├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── OWNERS ├── Pipfile ├── Pipfile.lock ├── README.md ├── docs ├── contributing.md └── how-to-upload-artifact-deprecated.md ├── operatorcourier ├── __init__.py ├── api.py ├── build.py ├── cli.py ├── const_io.py ├── errors.py ├── flatten.py ├── format.py ├── identify.py ├── manifest_parser.py ├── nest.py ├── push.py ├── validate.py └── verified_manifest.py ├── scripts ├── get-quay-token └── push-to-quay ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── integration │ ├── dockerfiles │ │ ├── integration-base.Dockerfile │ │ └── integration.Dockerfile │ ├── test_push.py │ └── test_verify.py ├── test_api.py ├── test_build.py ├── test_errors.py ├── test_files │ ├── bundles │ │ ├── api │ │ │ ├── etcd_invalid_nested_bundle │ │ │ │ ├── 0.6.1 │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ └── etcdoperator.clusterserviceversion.yaml │ │ │ │ ├── 0.9.0 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.v0.9.0.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── 0.9.2 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.v0.9.2.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ └── etcd.package.yaml │ │ │ ├── etcd_valid_nested_bundle │ │ │ │ ├── 0.6 │ │ │ │ │ └── etcdoperator.clusterserviceversion.yaml │ │ │ │ ├── 0.8 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.v0.9.0.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── 0.9 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.v0.9.2.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ └── etcd.package.yaml │ │ │ ├── etcd_valid_nested_bundle_with_random_folder │ │ │ │ ├── etcd.package.yaml │ │ │ │ ├── random_folder │ │ │ │ │ ├── package.yaml │ │ │ │ │ └── random_file.txt │ │ │ │ ├── version_0.6 │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ └── etcdoperator.clusterserviceversion.yaml │ │ │ │ ├── version_0.8 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.v0.9.0.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ └── version_0.9 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.v0.9.2.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ ├── prometheus_valid_nested_bundle │ │ │ │ ├── 0.14.0 │ │ │ │ │ ├── alertmanager.crd.yaml │ │ │ │ │ ├── prometheus.crd.yaml │ │ │ │ │ ├── prometheusoperator.0.14.0.clusterserviceversion.yaml │ │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ │ └── servicemonitor.crd.yaml │ │ │ │ ├── 0.15.0 │ │ │ │ │ ├── alertmanager.crd.yaml │ │ │ │ │ ├── prometheus.crd.yaml │ │ │ │ │ ├── prometheusoperator.0.15.0.clusterserviceversion.yaml │ │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ │ └── servicemonitor.crd.yaml │ │ │ │ ├── 0.22.2 │ │ │ │ │ ├── alertmanager.crd.yaml │ │ │ │ │ ├── prometheus.crd.yaml │ │ │ │ │ ├── prometheusoperator.0.22.2.clusterserviceversion.yaml │ │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ │ └── servicemonitor.crd.yaml │ │ │ │ └── prometheus.package.yaml │ │ │ ├── prometheus_valid_nested_bundle_2 │ │ │ │ ├── 0.14.0 │ │ │ │ │ ├── alertmanager.crd.yaml │ │ │ │ │ ├── prometheus.crd.yaml │ │ │ │ │ ├── prometheusoperator.0.14.0.clusterserviceversion.yaml │ │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ │ └── servicemonitor.crd.yaml │ │ │ │ ├── prometheus.package.yaml │ │ │ │ └── prometheusoperator.0.14.0.clusterserviceversion.yaml │ │ │ ├── results │ │ │ │ └── bundle.yaml │ │ │ ├── valid_flat_bundle │ │ │ │ ├── crd.yml │ │ │ │ ├── csv.yaml │ │ │ │ └── packages.yaml │ │ │ └── valid_flat_bundle_with_random_folder │ │ │ │ ├── crd.yml │ │ │ │ ├── csv.yaml │ │ │ │ ├── packages.yaml │ │ │ │ └── random_folder │ │ │ │ ├── package.yaml │ │ │ │ └── random_file.txt │ │ ├── flatten │ │ │ ├── etcd_valid_input_1 │ │ │ │ ├── 0.6.1 │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ └── etcdoperator.clusterserviceversion.yaml │ │ │ │ ├── 0.9.0 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.v0.9.0.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── 0.9.2 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ └── etcdoperator.v0.9.2.clusterserviceversion.yaml │ │ │ │ └── etcd.package.yaml │ │ │ ├── etcd_valid_input_2 │ │ │ │ ├── 0.6.1 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── 0.9.0 │ │ │ │ │ ├── etcdoperator.v0.9.0.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── 0.9.2 │ │ │ │ │ └── etcdoperator.v0.9.2.clusterserviceversion.yaml │ │ │ │ └── etcd.package.yaml │ │ │ ├── etcd_valid_input_3 │ │ │ │ ├── 0.61 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── 0.90 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.v0.9.0.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── 0.92 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.v0.9.2.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── etcd.package.yaml │ │ │ │ └── random_folder │ │ │ │ │ └── random_file.txt │ │ │ ├── etcd_valid_input_4 │ │ │ │ ├── 0.6.1 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── 0.9.0 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── 0.9.2 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ └── etcd.package.yaml │ │ │ ├── etcd_valid_input_5 │ │ │ │ ├── etcd.package.yaml │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ ├── etcdoperator.clusterserviceversion.yaml │ │ │ │ ├── etcdrestore.crd.yaml │ │ │ │ ├── random_folder1 │ │ │ │ │ ├── package.yaml │ │ │ │ │ └── random_file.txt │ │ │ │ └── random_folder2 │ │ │ │ │ └── random_file.txt │ │ │ ├── etcd_valid_input_6 │ │ │ │ ├── 0.9 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.clusterserviceversion.yaml │ │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── etcd.package.yaml │ │ │ │ └── etcdoperator.clusterserviceversion.yaml │ │ │ ├── etcd_valid_input_7 │ │ │ │ ├── 0.9 │ │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ │ ├── etcdoperator.clusterserviceversion.yaml │ │ │ │ │ ├── etcdrestore.crd.yaml │ │ │ │ │ └── image-references │ │ │ │ ├── art.yaml │ │ │ │ ├── etcd.package.yaml │ │ │ │ └── etcdoperator.clusterserviceversion.yaml │ │ │ └── etcd_valid_input_7_result │ │ │ │ ├── 0.9 │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ ├── etcdoperator.clusterserviceversion.yaml │ │ │ │ └── etcdrestore.crd.yaml │ │ │ │ ├── etcd.package.yaml │ │ │ │ └── etcdoperator.clusterserviceversion.yaml │ │ ├── nest │ │ │ ├── flat_bundle1 │ │ │ │ ├── alertmanager.crd.yaml │ │ │ │ ├── prometheus.crd.yaml │ │ │ │ ├── prometheus.package.yaml │ │ │ │ ├── prometheusoperator.0.14.0.clusterserviceversion.yaml │ │ │ │ ├── prometheusoperator.0.15.0.clusterserviceversion.yaml │ │ │ │ ├── prometheusoperator.0.22.2.clusterserviceversion.yaml │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ ├── random_folder1 │ │ │ │ │ ├── package.yaml │ │ │ │ │ └── random_file.txt │ │ │ │ ├── random_folder2 │ │ │ │ │ ├── package.yaml │ │ │ │ │ └── random_file.txt │ │ │ │ └── servicemonitor.crd.yaml │ │ │ ├── flat_bundle1_result │ │ │ │ ├── 0.14.0 │ │ │ │ │ ├── alertmanagers.monitoring.coreos.com.crd.yaml │ │ │ │ │ ├── prometheuses.monitoring.coreos.com.crd.yaml │ │ │ │ │ ├── prometheusoperator.0.14.0.clusterserviceversion.yaml │ │ │ │ │ └── servicemonitors.monitoring.coreos.com.crd.yaml │ │ │ │ ├── 0.15.0 │ │ │ │ │ ├── alertmanagers.monitoring.coreos.com.crd.yaml │ │ │ │ │ ├── prometheuses.monitoring.coreos.com.crd.yaml │ │ │ │ │ ├── prometheusoperator.0.15.0.clusterserviceversion.yaml │ │ │ │ │ └── servicemonitors.monitoring.coreos.com.crd.yaml │ │ │ │ ├── 0.22.2 │ │ │ │ │ ├── alertmanagers.monitoring.coreos.com.crd.yaml │ │ │ │ │ ├── prometheuses.monitoring.coreos.com.crd.yaml │ │ │ │ │ ├── prometheusoperator.0.22.2.clusterserviceversion.yaml │ │ │ │ │ ├── prometheusrules.monitoring.coreos.com.crd.yaml │ │ │ │ │ └── servicemonitors.monitoring.coreos.com.crd.yaml │ │ │ │ └── prometheus.package.yaml │ │ │ ├── flat_bundle2_without_crds │ │ │ │ ├── svcat.package.yaml │ │ │ │ └── svcat.v0.1.34.clusterserviceversion.yaml │ │ │ ├── flat_bundle2_without_crds_result │ │ │ │ ├── 0.1.34 │ │ │ │ │ └── svcat.v0.1.34.clusterserviceversion.yaml │ │ │ │ └── svcat.package.yaml │ │ │ ├── nested_bundle1 │ │ │ │ ├── 0.14.0 │ │ │ │ │ ├── alertmanager.crd.yaml │ │ │ │ │ ├── prometheus.crd.yaml │ │ │ │ │ ├── prometheusoperator.0.14.0.clusterserviceversion.yaml │ │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ │ ├── random_file1.txt │ │ │ │ │ ├── random_folder │ │ │ │ │ │ ├── package.yaml │ │ │ │ │ │ └── random_file.txt │ │ │ │ │ └── servicemonitor.crd.yaml │ │ │ │ ├── 0.15.0 │ │ │ │ │ ├── alertmanager.crd.yaml │ │ │ │ │ ├── prometheus.crd.yaml │ │ │ │ │ ├── prometheusoperator.0.15.0.clusterserviceversion.yaml │ │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ │ ├── random_file2.txt │ │ │ │ │ └── servicemonitor.crd.yaml │ │ │ │ ├── 0.22.2 │ │ │ │ │ ├── alertmanager.crd.yaml │ │ │ │ │ ├── prometheus.crd.yaml │ │ │ │ │ ├── prometheusoperator.0.22.2.clusterserviceversion.yaml │ │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ │ └── servicemonitor.crd.yaml │ │ │ │ ├── prometheus.package.yaml │ │ │ │ ├── random_file1.txt │ │ │ │ ├── random_file2.txt │ │ │ │ └── random_folder │ │ │ │ │ ├── package.yaml │ │ │ │ │ └── random_file.txt │ │ │ └── nested_bundle1_result │ │ │ │ ├── 0.14.0 │ │ │ │ ├── alertmanager.crd.yaml │ │ │ │ ├── prometheus.crd.yaml │ │ │ │ ├── prometheusoperator.0.14.0.clusterserviceversion.yaml │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ └── servicemonitor.crd.yaml │ │ │ │ ├── 0.15.0 │ │ │ │ ├── alertmanager.crd.yaml │ │ │ │ ├── prometheus.crd.yaml │ │ │ │ ├── prometheusoperator.0.15.0.clusterserviceversion.yaml │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ └── servicemonitor.crd.yaml │ │ │ │ ├── 0.22.2 │ │ │ │ ├── alertmanager.crd.yaml │ │ │ │ ├── prometheus.crd.yaml │ │ │ │ ├── prometheusoperator.0.22.2.clusterserviceversion.yaml │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ └── servicemonitor.crd.yaml │ │ │ │ └── prometheus.package.yaml │ │ └── verification │ │ │ ├── crdmissingkindfield.invalid.bundle.yaml │ │ │ ├── crdmissingpluralfield.invalid.bundle.yaml │ │ │ ├── crdmissingversionfield.invalid.bundle.yaml │ │ │ ├── crdversions.invalid.bundle.yaml │ │ │ ├── crdversions.valid.bundle.yaml │ │ │ ├── csvcrdfieldmismatch1.invalid.bundle.yaml │ │ │ ├── csvcrdfieldmismatch2.invalid.bundle.yaml │ │ │ ├── csvcrdfieldmismatch3.invalid.bundle.yaml │ │ │ ├── csvinstallspecnotlists.invalid.bundle.yaml │ │ │ ├── csvinstallstrategywrongvalue.invalid.bundle.yaml │ │ │ ├── csvmissinginstallattributes.invalid.bundle.yaml │ │ │ ├── csvmissingkindfield.invalid.bundle.yaml │ │ │ ├── csvmissingnamefield.invalid.bundle.yaml │ │ │ ├── csvmissingversionfield.invalid.bundle.yaml │ │ │ ├── multiplecrds.bundle.yaml │ │ │ ├── multiplepkgs.invalid.bundle.yaml │ │ │ ├── no-data-key.bundle.yaml │ │ │ ├── nocrd.valid.bundle.yaml │ │ │ ├── noicon.valid.bundle.yaml │ │ │ ├── nopkg.invalid.bundle.yaml │ │ │ ├── ui.invalid.bundle.yaml │ │ │ └── valid.bundle.yaml │ ├── crd.yaml │ ├── crd2.yaml │ ├── csv.yaml │ ├── empty.yaml │ ├── invalid.malformed.parser.error.yaml │ ├── invalid.malformed.scanner.error.yaml │ ├── invalid.yaml │ ├── package.yaml │ └── yaml_source_dir │ │ ├── invalid_yamls_multiple_packages │ │ ├── dynatrace-monitoring.v0.2.0.clusterserviceversion.yaml │ │ ├── dynatrace.crd.yaml │ │ ├── dynatrace.package.yaml │ │ └── dynatrace.package2.yaml │ │ ├── invalid_yamls_without_package │ │ ├── dynatrace-monitoring.v0.2.0.clusterserviceversion.yaml │ │ └── dynatrace.crd.yaml │ │ ├── valid_yamls_with_multiple_crds │ │ ├── crd.yaml │ │ ├── crd2.yaml │ │ ├── csv.yaml │ │ └── package.yaml │ │ ├── valid_yamls_with_single_crd │ │ ├── dynatrace-monitoring.v0.2.0.clusterserviceversion.yaml │ │ ├── dynatrace.crd.yaml │ │ └── dynatrace.package.yaml │ │ └── valid_yamls_without_crds │ │ ├── svcat.package.yaml │ │ └── svcat.v0.1.34.clusterserviceversion.yaml ├── test_flatten.py ├── test_identify.py ├── test_manifest_parser.py ├── test_nest.py ├── test_push.py └── test_validate.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/OWNERS -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/README.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/how-to-upload-artifact-deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/docs/how-to-upload-artifact-deprecated.md -------------------------------------------------------------------------------- /operatorcourier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operatorcourier/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/api.py -------------------------------------------------------------------------------- /operatorcourier/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/build.py -------------------------------------------------------------------------------- /operatorcourier/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/cli.py -------------------------------------------------------------------------------- /operatorcourier/const_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/const_io.py -------------------------------------------------------------------------------- /operatorcourier/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/errors.py -------------------------------------------------------------------------------- /operatorcourier/flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/flatten.py -------------------------------------------------------------------------------- /operatorcourier/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/format.py -------------------------------------------------------------------------------- /operatorcourier/identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/identify.py -------------------------------------------------------------------------------- /operatorcourier/manifest_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/manifest_parser.py -------------------------------------------------------------------------------- /operatorcourier/nest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/nest.py -------------------------------------------------------------------------------- /operatorcourier/push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/push.py -------------------------------------------------------------------------------- /operatorcourier/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/validate.py -------------------------------------------------------------------------------- /operatorcourier/verified_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/operatorcourier/verified_manifest.py -------------------------------------------------------------------------------- /scripts/get-quay-token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/scripts/get-quay-token -------------------------------------------------------------------------------- /scripts/push-to-quay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/scripts/push-to-quay -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/dockerfiles/integration-base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/integration/dockerfiles/integration-base.Dockerfile -------------------------------------------------------------------------------- /tests/integration/dockerfiles/integration.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/integration/dockerfiles/integration.Dockerfile -------------------------------------------------------------------------------- /tests/integration/test_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/integration/test_push.py -------------------------------------------------------------------------------- /tests/integration/test_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/integration/test_verify.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_build.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.6.1/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.6.1/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.6.1/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.6.1/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.0/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.0/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.0/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.0/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.0/etcdoperator.v0.9.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.0/etcdoperator.v0.9.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.0/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.0/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.2/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.2/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.2/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.2/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.2/etcdoperator.v0.9.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.2/etcdoperator.v0.9.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.2/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_invalid_nested_bundle/0.9.2/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_invalid_nested_bundle/etcd.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_invalid_nested_bundle/etcd.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle/0.6/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle/0.6/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle/0.8/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle/0.8/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle/0.8/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle/0.8/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle/0.8/etcdoperator.v0.9.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle/0.8/etcdoperator.v0.9.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle/0.8/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle/0.8/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle/0.9/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle/0.9/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle/0.9/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle/0.9/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle/0.9/etcdoperator.v0.9.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle/0.9/etcdoperator.v0.9.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle/0.9/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle/0.9/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle/etcd.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle/etcd.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/etcd.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/etcd.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/random_folder/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/random_folder/package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/random_folder/random_file.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.6/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.6/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.6/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.6/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.8/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.8/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.8/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.8/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.8/etcdoperator.v0.9.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.8/etcdoperator.v0.9.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.8/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.8/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.9/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.9/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.9/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.9/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.9/etcdoperator.v0.9.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.9/etcdoperator.v0.9.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.9/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/etcd_valid_nested_bundle_with_random_folder/version_0.9/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.14.0/alertmanager.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.14.0/alertmanager.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.14.0/prometheus.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.14.0/prometheus.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.14.0/prometheusoperator.0.14.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.14.0/prometheusoperator.0.14.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.14.0/prometheusrule.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.14.0/prometheusrule.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.14.0/servicemonitor.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.14.0/servicemonitor.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.15.0/alertmanager.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.15.0/alertmanager.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.15.0/prometheus.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.15.0/prometheus.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.15.0/prometheusoperator.0.15.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.15.0/prometheusoperator.0.15.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.15.0/prometheusrule.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.15.0/prometheusrule.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.15.0/servicemonitor.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.15.0/servicemonitor.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.22.2/alertmanager.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.22.2/alertmanager.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.22.2/prometheus.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.22.2/prometheus.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.22.2/prometheusoperator.0.22.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.22.2/prometheusoperator.0.22.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.22.2/prometheusrule.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.22.2/prometheusrule.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.22.2/servicemonitor.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/0.22.2/servicemonitor.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle/prometheus.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle/prometheus.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/0.14.0/alertmanager.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/0.14.0/alertmanager.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/0.14.0/prometheus.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/0.14.0/prometheus.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/0.14.0/prometheusoperator.0.14.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/0.14.0/prometheusoperator.0.14.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/0.14.0/prometheusrule.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/0.14.0/prometheusrule.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/0.14.0/servicemonitor.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/0.14.0/servicemonitor.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/prometheus.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/prometheus.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/prometheusoperator.0.14.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/prometheus_valid_nested_bundle_2/prometheusoperator.0.14.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/results/bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/results/bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/valid_flat_bundle/crd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/valid_flat_bundle/crd.yml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/valid_flat_bundle/csv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/valid_flat_bundle/csv.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/valid_flat_bundle/packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/valid_flat_bundle/packages.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/valid_flat_bundle_with_random_folder/crd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/valid_flat_bundle_with_random_folder/crd.yml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/valid_flat_bundle_with_random_folder/csv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/valid_flat_bundle_with_random_folder/csv.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/valid_flat_bundle_with_random_folder/packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/valid_flat_bundle_with_random_folder/packages.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/valid_flat_bundle_with_random_folder/random_folder/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/api/valid_flat_bundle_with_random_folder/random_folder/package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/api/valid_flat_bundle_with_random_folder/random_folder/random_file.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_1/0.6.1/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_1/0.6.1/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_1/0.6.1/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_1/0.6.1/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.0/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.0/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.0/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.0/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.0/etcdoperator.v0.9.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.0/etcdoperator.v0.9.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.0/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.0/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.2/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.2/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.2/etcdoperator.v0.9.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_1/0.9.2/etcdoperator.v0.9.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_1/etcd.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_1/etcd.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_2/0.6.1/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_2/0.6.1/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_2/0.6.1/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_2/0.6.1/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_2/0.6.1/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_2/0.6.1/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_2/0.6.1/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_2/0.6.1/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_2/0.9.0/etcdoperator.v0.9.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_2/0.9.0/etcdoperator.v0.9.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_2/0.9.0/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_2/0.9.0/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_2/0.9.2/etcdoperator.v0.9.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_2/0.9.2/etcdoperator.v0.9.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_2/etcd.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_2/etcd.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.61/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.61/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.61/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.61/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.61/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.61/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.61/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.61/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.90/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.90/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.90/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.90/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.90/etcdoperator.v0.9.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.90/etcdoperator.v0.9.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.90/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.90/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.92/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.92/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.92/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.92/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.92/etcdoperator.v0.9.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.92/etcdoperator.v0.9.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/0.92/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/0.92/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/etcd.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_3/etcd.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_3/random_folder/random_file.txt: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.6.1/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.6.1/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.6.1/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.6.1/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.6.1/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.6.1/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.6.1/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.6.1/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.0/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.0/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.0/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.0/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.0/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.0/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.0/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.0/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.2/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.2/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.2/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.2/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.2/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.2/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.2/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/0.9.2/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_4/etcd.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_4/etcd.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_5/etcd.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_5/etcd.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_5/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_5/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_5/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_5/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_5/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_5/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_5/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_5/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_5/random_folder1/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_5/random_folder1/package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_5/random_folder1/random_file.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_5/random_folder2/random_file.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_6/0.9/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_6/0.9/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_6/0.9/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_6/0.9/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_6/0.9/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_6/0.9/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_6/0.9/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_6/0.9/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_6/etcd.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_6/etcd.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_6/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_6/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7/0.9/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7/0.9/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7/0.9/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7/0.9/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7/0.9/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7/0.9/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7/0.9/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7/0.9/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7/0.9/image-references: -------------------------------------------------------------------------------- 1 | kind: ImageStream 2 | apiVersion: image.openshift.io/v1 3 | spec: 4 | -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7/art.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7/art.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7/etcd.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7/etcd.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7_result/0.9/etcdbackup.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7_result/0.9/etcdbackup.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7_result/0.9/etcdcluster.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7_result/0.9/etcdcluster.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7_result/0.9/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7_result/0.9/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7_result/0.9/etcdrestore.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7_result/0.9/etcdrestore.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7_result/etcd.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7_result/etcd.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/flatten/etcd_valid_input_7_result/etcdoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/flatten/etcd_valid_input_7_result/etcdoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/alertmanager.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1/alertmanager.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/prometheus.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1/prometheus.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/prometheus.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1/prometheus.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/prometheusoperator.0.14.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1/prometheusoperator.0.14.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/prometheusoperator.0.15.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1/prometheusoperator.0.15.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/prometheusoperator.0.22.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1/prometheusoperator.0.22.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/prometheusrule.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1/prometheusrule.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/random_folder1/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1/random_folder1/package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/random_folder1/random_file.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/random_folder2/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1/random_folder2/package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/random_folder2/random_file.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1/servicemonitor.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1/servicemonitor.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.14.0/alertmanagers.monitoring.coreos.com.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.14.0/alertmanagers.monitoring.coreos.com.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.14.0/prometheuses.monitoring.coreos.com.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.14.0/prometheuses.monitoring.coreos.com.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.14.0/prometheusoperator.0.14.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.14.0/prometheusoperator.0.14.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.14.0/servicemonitors.monitoring.coreos.com.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.14.0/servicemonitors.monitoring.coreos.com.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.15.0/alertmanagers.monitoring.coreos.com.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.15.0/alertmanagers.monitoring.coreos.com.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.15.0/prometheuses.monitoring.coreos.com.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.15.0/prometheuses.monitoring.coreos.com.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.15.0/prometheusoperator.0.15.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.15.0/prometheusoperator.0.15.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.15.0/servicemonitors.monitoring.coreos.com.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.15.0/servicemonitors.monitoring.coreos.com.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.22.2/alertmanagers.monitoring.coreos.com.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.22.2/alertmanagers.monitoring.coreos.com.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.22.2/prometheuses.monitoring.coreos.com.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.22.2/prometheuses.monitoring.coreos.com.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.22.2/prometheusoperator.0.22.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.22.2/prometheusoperator.0.22.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.22.2/prometheusrules.monitoring.coreos.com.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.22.2/prometheusrules.monitoring.coreos.com.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/0.22.2/servicemonitors.monitoring.coreos.com.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/0.22.2/servicemonitors.monitoring.coreos.com.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle1_result/prometheus.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle1_result/prometheus.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle2_without_crds/svcat.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle2_without_crds/svcat.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle2_without_crds/svcat.v0.1.34.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle2_without_crds/svcat.v0.1.34.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle2_without_crds_result/0.1.34/svcat.v0.1.34.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle2_without_crds_result/0.1.34/svcat.v0.1.34.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/flat_bundle2_without_crds_result/svcat.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/flat_bundle2_without_crds_result/svcat.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.14.0/alertmanager.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.14.0/alertmanager.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.14.0/prometheus.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.14.0/prometheus.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.14.0/prometheusoperator.0.14.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.14.0/prometheusoperator.0.14.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.14.0/prometheusrule.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.14.0/prometheusrule.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.14.0/random_file1.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.14.0/random_folder/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.14.0/random_folder/package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.14.0/random_folder/random_file.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.14.0/servicemonitor.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.14.0/servicemonitor.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.15.0/alertmanager.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.15.0/alertmanager.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.15.0/prometheus.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.15.0/prometheus.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.15.0/prometheusoperator.0.15.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.15.0/prometheusoperator.0.15.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.15.0/prometheusrule.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.15.0/prometheusrule.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.15.0/random_file2.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.15.0/servicemonitor.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.15.0/servicemonitor.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.22.2/alertmanager.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.22.2/alertmanager.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.22.2/prometheus.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.22.2/prometheus.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.22.2/prometheusoperator.0.22.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.22.2/prometheusoperator.0.22.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.22.2/prometheusrule.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.22.2/prometheusrule.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/0.22.2/servicemonitor.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/0.22.2/servicemonitor.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/prometheus.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/prometheus.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/random_file1.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/random_file2.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/random_folder/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1/random_folder/package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1/random_folder/random_file.txt: -------------------------------------------------------------------------------- 1 | random text 2 | -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.14.0/alertmanager.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.14.0/alertmanager.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.14.0/prometheus.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.14.0/prometheus.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.14.0/prometheusoperator.0.14.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.14.0/prometheusoperator.0.14.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.14.0/prometheusrule.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.14.0/prometheusrule.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.14.0/servicemonitor.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.14.0/servicemonitor.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.15.0/alertmanager.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.15.0/alertmanager.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.15.0/prometheus.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.15.0/prometheus.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.15.0/prometheusoperator.0.15.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.15.0/prometheusoperator.0.15.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.15.0/prometheusrule.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.15.0/prometheusrule.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.15.0/servicemonitor.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.15.0/servicemonitor.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.22.2/alertmanager.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.22.2/alertmanager.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.22.2/prometheus.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.22.2/prometheus.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.22.2/prometheusoperator.0.22.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.22.2/prometheusoperator.0.22.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.22.2/prometheusrule.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.22.2/prometheusrule.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/0.22.2/servicemonitor.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/0.22.2/servicemonitor.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/nest/nested_bundle1_result/prometheus.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/nest/nested_bundle1_result/prometheus.package.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/crdmissingkindfield.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/crdmissingkindfield.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/crdmissingpluralfield.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/crdmissingpluralfield.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/crdmissingversionfield.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/crdmissingversionfield.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/crdversions.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/crdversions.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/crdversions.valid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/crdversions.valid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/csvcrdfieldmismatch1.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/csvcrdfieldmismatch1.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/csvcrdfieldmismatch2.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/csvcrdfieldmismatch2.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/csvcrdfieldmismatch3.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/csvcrdfieldmismatch3.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/csvinstallspecnotlists.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/csvinstallspecnotlists.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/csvinstallstrategywrongvalue.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/csvinstallstrategywrongvalue.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/csvmissinginstallattributes.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/csvmissinginstallattributes.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/csvmissingkindfield.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/csvmissingkindfield.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/csvmissingnamefield.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/csvmissingnamefield.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/csvmissingversionfield.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/csvmissingversionfield.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/multiplecrds.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/multiplecrds.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/multiplepkgs.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/multiplepkgs.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/no-data-key.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/no-data-key.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/nocrd.valid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/nocrd.valid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/noicon.valid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/noicon.valid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/nopkg.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/nopkg.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/ui.invalid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/ui.invalid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/bundles/verification/valid.bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/bundles/verification/valid.bundle.yaml -------------------------------------------------------------------------------- /tests/test_files/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/crd.yaml -------------------------------------------------------------------------------- /tests/test_files/crd2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/crd2.yaml -------------------------------------------------------------------------------- /tests/test_files/csv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/csv.yaml -------------------------------------------------------------------------------- /tests/test_files/empty.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_files/invalid.malformed.parser.error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/invalid.malformed.parser.error.yaml -------------------------------------------------------------------------------- /tests/test_files/invalid.malformed.scanner.error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/invalid.malformed.scanner.error.yaml -------------------------------------------------------------------------------- /tests/test_files/invalid.yaml: -------------------------------------------------------------------------------- 1 | invalid: test 2 | -------------------------------------------------------------------------------- /tests/test_files/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/package.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/invalid_yamls_multiple_packages/dynatrace-monitoring.v0.2.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/invalid_yamls_multiple_packages/dynatrace-monitoring.v0.2.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/invalid_yamls_multiple_packages/dynatrace.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/invalid_yamls_multiple_packages/dynatrace.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/invalid_yamls_multiple_packages/dynatrace.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/invalid_yamls_multiple_packages/dynatrace.package.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/invalid_yamls_multiple_packages/dynatrace.package2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/invalid_yamls_multiple_packages/dynatrace.package2.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/invalid_yamls_without_package/dynatrace-monitoring.v0.2.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/invalid_yamls_without_package/dynatrace-monitoring.v0.2.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/invalid_yamls_without_package/dynatrace.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/invalid_yamls_without_package/dynatrace.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/valid_yamls_with_multiple_crds/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/valid_yamls_with_multiple_crds/crd.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/valid_yamls_with_multiple_crds/crd2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/valid_yamls_with_multiple_crds/crd2.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/valid_yamls_with_multiple_crds/csv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/valid_yamls_with_multiple_crds/csv.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/valid_yamls_with_multiple_crds/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/valid_yamls_with_multiple_crds/package.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/valid_yamls_with_single_crd/dynatrace-monitoring.v0.2.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/valid_yamls_with_single_crd/dynatrace-monitoring.v0.2.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/valid_yamls_with_single_crd/dynatrace.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/valid_yamls_with_single_crd/dynatrace.crd.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/valid_yamls_with_single_crd/dynatrace.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/valid_yamls_with_single_crd/dynatrace.package.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/valid_yamls_without_crds/svcat.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/valid_yamls_without_crds/svcat.package.yaml -------------------------------------------------------------------------------- /tests/test_files/yaml_source_dir/valid_yamls_without_crds/svcat.v0.1.34.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_files/yaml_source_dir/valid_yamls_without_crds/svcat.v0.1.34.clusterserviceversion.yaml -------------------------------------------------------------------------------- /tests/test_flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_flatten.py -------------------------------------------------------------------------------- /tests/test_identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_identify.py -------------------------------------------------------------------------------- /tests/test_manifest_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_manifest_parser.py -------------------------------------------------------------------------------- /tests/test_nest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_nest.py -------------------------------------------------------------------------------- /tests/test_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_push.py -------------------------------------------------------------------------------- /tests/test_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tests/test_validate.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-courier/HEAD/tox.ini --------------------------------------------------------------------------------