├── .bingo ├── .gitignore ├── README.md ├── Variables.mk ├── go.mod ├── hugo.mod ├── hugo.sum └── variables.env ├── .github └── workflows │ └── lint.yaml ├── .gitignore ├── .nvmrc ├── CODEOWNERS ├── Makefile ├── README.md ├── assets └── scss │ ├── _breadcrumb.scss │ ├── _docs.scss │ ├── _footer.scss │ ├── _functions.scss │ ├── _global.scss │ ├── _header.scss │ ├── _homepage.scss │ ├── _of-variables.scss │ ├── _reset.scss │ ├── _sidebar-tree.scss │ ├── _styles_project.scss │ └── _type.scss ├── config.toml ├── content └── en │ ├── _index.html │ ├── about │ └── _index.html │ ├── docs │ ├── Concepts │ │ ├── _index.md │ │ ├── crds │ │ │ ├── CatalogSource.md │ │ │ ├── _index.md │ │ │ ├── clusterserviceversion.md │ │ │ ├── installplan.md │ │ │ ├── operatorcondition.md │ │ │ ├── operatorgroup.md │ │ │ └── subscription.md │ │ ├── olm-architecture │ │ │ ├── _index.md │ │ │ ├── dependency-resolution │ │ │ │ └── _index.md │ │ │ └── operator-catalog │ │ │ │ └── creating-an-update-graph.md │ │ └── operators-on-cluster.md │ ├── Glossary │ │ └── _index.md │ ├── Reference │ │ ├── _index.md │ │ ├── admission-webhooks.md │ │ ├── catalog-templates.md │ │ └── file-based-catalogs.md │ ├── Tasks │ │ ├── _index.md │ │ ├── creating-a-catalog.md │ │ ├── creating-operator-bundle.md │ │ ├── creating-operator-manifests.md │ │ ├── install-operator-with-olm.md │ │ ├── list-operators-available-to-install.md │ │ ├── make-catalog-available-on-cluster.md │ │ └── uninstall-operator.md │ ├── Troubleshooting │ │ ├── _index.md │ │ ├── catalogsource.md │ │ ├── clusterserviceversion.md │ │ ├── olm-and-catalog-operators.md │ │ └── subscription.md │ ├── _index.md │ ├── advanced-tasks │ │ ├── _index.md │ │ ├── adding-admission-and-conversion-webhooks.md │ │ ├── catalog-update-formulary.md │ │ ├── communicating-operator-conditions-to-olm.md │ │ ├── configuring-olm.md │ │ ├── operator-scoping-with-operatorgroups.md │ │ ├── overriding-catalog-source-pod-scheduling-configuration.md │ │ ├── overriding-operator-pod-affinity-configuration.md │ │ ├── performance-profiling.md │ │ ├── ship-operator-supporting-multiarch.md │ │ └── unsafe-fail-forward-upgrades.md │ ├── best-practices │ │ ├── _index.md │ │ ├── channel-naming.md │ │ ├── common.md │ │ └── images │ │ │ ├── channel-naming1.png │ │ │ └── channel-naming2.png │ ├── contribution-guidelines │ │ ├── _index.md │ │ ├── local-docs.md │ │ └── upgrade-graphs.md │ └── getting-started │ │ └── _index.md │ └── images │ ├── 4498B411F22DC186.png │ ├── Asset 1.png │ ├── Asset 2.png │ ├── arrow.svg │ ├── bg-masthead-green.svg │ ├── bg-masthead-red.svg │ ├── bg-masthead.svg │ ├── header-bg.svg │ ├── ico-build.svg │ ├── ico-discover.svg │ ├── ico-manage.svg │ ├── logo-sm.svg │ ├── logo.svg │ └── sprite.svg ├── go.mod ├── go.sum ├── hack └── ci │ └── link-check.sh ├── layouts ├── 404.html ├── _default │ └── baseof.html ├── docs │ ├── baseof.html │ └── list.html ├── partials │ ├── footer.html │ ├── hooks │ │ ├── body-end.html │ │ └── head-end.html │ ├── navbar-version-selector.html │ ├── navbar.html │ ├── section-index.html │ └── sidebar-tree.html └── shortcodes │ ├── code_callout.html │ └── mermaid.html ├── netlify.toml ├── package.json └── static └── favicons ├── apple-touch-icon-180x180.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── pwa-192x192.png ├── pwa-512x512.png ├── tile150x150.png ├── tile310x150.png ├── tile310x310.png └── tile70x70.png /.bingo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/.bingo/.gitignore -------------------------------------------------------------------------------- /.bingo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/.bingo/README.md -------------------------------------------------------------------------------- /.bingo/Variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/.bingo/Variables.mk -------------------------------------------------------------------------------- /.bingo/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/.bingo/go.mod -------------------------------------------------------------------------------- /.bingo/hugo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/.bingo/hugo.mod -------------------------------------------------------------------------------- /.bingo/hugo.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/.bingo/hugo.sum -------------------------------------------------------------------------------- /.bingo/variables.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/.bingo/variables.env -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | 3 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @operator-framework/team-olm 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/README.md -------------------------------------------------------------------------------- /assets/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /assets/scss/_docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_docs.scss -------------------------------------------------------------------------------- /assets/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_footer.scss -------------------------------------------------------------------------------- /assets/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_functions.scss -------------------------------------------------------------------------------- /assets/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_global.scss -------------------------------------------------------------------------------- /assets/scss/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_header.scss -------------------------------------------------------------------------------- /assets/scss/_homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_homepage.scss -------------------------------------------------------------------------------- /assets/scss/_of-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_of-variables.scss -------------------------------------------------------------------------------- /assets/scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_reset.scss -------------------------------------------------------------------------------- /assets/scss/_sidebar-tree.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_sidebar-tree.scss -------------------------------------------------------------------------------- /assets/scss/_styles_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_styles_project.scss -------------------------------------------------------------------------------- /assets/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/assets/scss/_type.scss -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/config.toml -------------------------------------------------------------------------------- /content/en/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/_index.html -------------------------------------------------------------------------------- /content/en/about/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/about/_index.html -------------------------------------------------------------------------------- /content/en/docs/Concepts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/_index.md -------------------------------------------------------------------------------- /content/en/docs/Concepts/crds/CatalogSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/crds/CatalogSource.md -------------------------------------------------------------------------------- /content/en/docs/Concepts/crds/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/crds/_index.md -------------------------------------------------------------------------------- /content/en/docs/Concepts/crds/clusterserviceversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/crds/clusterserviceversion.md -------------------------------------------------------------------------------- /content/en/docs/Concepts/crds/installplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/crds/installplan.md -------------------------------------------------------------------------------- /content/en/docs/Concepts/crds/operatorcondition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/crds/operatorcondition.md -------------------------------------------------------------------------------- /content/en/docs/Concepts/crds/operatorgroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/crds/operatorgroup.md -------------------------------------------------------------------------------- /content/en/docs/Concepts/crds/subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/crds/subscription.md -------------------------------------------------------------------------------- /content/en/docs/Concepts/olm-architecture/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/olm-architecture/_index.md -------------------------------------------------------------------------------- /content/en/docs/Concepts/olm-architecture/dependency-resolution/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/olm-architecture/dependency-resolution/_index.md -------------------------------------------------------------------------------- /content/en/docs/Concepts/olm-architecture/operator-catalog/creating-an-update-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/olm-architecture/operator-catalog/creating-an-update-graph.md -------------------------------------------------------------------------------- /content/en/docs/Concepts/operators-on-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Concepts/operators-on-cluster.md -------------------------------------------------------------------------------- /content/en/docs/Glossary/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Glossary/_index.md -------------------------------------------------------------------------------- /content/en/docs/Reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Reference/_index.md -------------------------------------------------------------------------------- /content/en/docs/Reference/admission-webhooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Reference/admission-webhooks.md -------------------------------------------------------------------------------- /content/en/docs/Reference/catalog-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Reference/catalog-templates.md -------------------------------------------------------------------------------- /content/en/docs/Reference/file-based-catalogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Reference/file-based-catalogs.md -------------------------------------------------------------------------------- /content/en/docs/Tasks/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Tasks/_index.md -------------------------------------------------------------------------------- /content/en/docs/Tasks/creating-a-catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Tasks/creating-a-catalog.md -------------------------------------------------------------------------------- /content/en/docs/Tasks/creating-operator-bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Tasks/creating-operator-bundle.md -------------------------------------------------------------------------------- /content/en/docs/Tasks/creating-operator-manifests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Tasks/creating-operator-manifests.md -------------------------------------------------------------------------------- /content/en/docs/Tasks/install-operator-with-olm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Tasks/install-operator-with-olm.md -------------------------------------------------------------------------------- /content/en/docs/Tasks/list-operators-available-to-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Tasks/list-operators-available-to-install.md -------------------------------------------------------------------------------- /content/en/docs/Tasks/make-catalog-available-on-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Tasks/make-catalog-available-on-cluster.md -------------------------------------------------------------------------------- /content/en/docs/Tasks/uninstall-operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Tasks/uninstall-operator.md -------------------------------------------------------------------------------- /content/en/docs/Troubleshooting/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Troubleshooting/_index.md -------------------------------------------------------------------------------- /content/en/docs/Troubleshooting/catalogsource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Troubleshooting/catalogsource.md -------------------------------------------------------------------------------- /content/en/docs/Troubleshooting/clusterserviceversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Troubleshooting/clusterserviceversion.md -------------------------------------------------------------------------------- /content/en/docs/Troubleshooting/olm-and-catalog-operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Troubleshooting/olm-and-catalog-operators.md -------------------------------------------------------------------------------- /content/en/docs/Troubleshooting/subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/Troubleshooting/subscription.md -------------------------------------------------------------------------------- /content/en/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/_index.md -------------------------------------------------------------------------------- /content/en/docs/advanced-tasks/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Advanced Tasks" 3 | weight: 3 4 | --- 5 | -------------------------------------------------------------------------------- /content/en/docs/advanced-tasks/adding-admission-and-conversion-webhooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/advanced-tasks/adding-admission-and-conversion-webhooks.md -------------------------------------------------------------------------------- /content/en/docs/advanced-tasks/catalog-update-formulary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/advanced-tasks/catalog-update-formulary.md -------------------------------------------------------------------------------- /content/en/docs/advanced-tasks/communicating-operator-conditions-to-olm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/advanced-tasks/communicating-operator-conditions-to-olm.md -------------------------------------------------------------------------------- /content/en/docs/advanced-tasks/configuring-olm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/advanced-tasks/configuring-olm.md -------------------------------------------------------------------------------- /content/en/docs/advanced-tasks/operator-scoping-with-operatorgroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/advanced-tasks/operator-scoping-with-operatorgroups.md -------------------------------------------------------------------------------- /content/en/docs/advanced-tasks/overriding-catalog-source-pod-scheduling-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/advanced-tasks/overriding-catalog-source-pod-scheduling-configuration.md -------------------------------------------------------------------------------- /content/en/docs/advanced-tasks/overriding-operator-pod-affinity-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/advanced-tasks/overriding-operator-pod-affinity-configuration.md -------------------------------------------------------------------------------- /content/en/docs/advanced-tasks/performance-profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/advanced-tasks/performance-profiling.md -------------------------------------------------------------------------------- /content/en/docs/advanced-tasks/ship-operator-supporting-multiarch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/advanced-tasks/ship-operator-supporting-multiarch.md -------------------------------------------------------------------------------- /content/en/docs/advanced-tasks/unsafe-fail-forward-upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/advanced-tasks/unsafe-fail-forward-upgrades.md -------------------------------------------------------------------------------- /content/en/docs/best-practices/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/best-practices/_index.md -------------------------------------------------------------------------------- /content/en/docs/best-practices/channel-naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/best-practices/channel-naming.md -------------------------------------------------------------------------------- /content/en/docs/best-practices/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/best-practices/common.md -------------------------------------------------------------------------------- /content/en/docs/best-practices/images/channel-naming1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/best-practices/images/channel-naming1.png -------------------------------------------------------------------------------- /content/en/docs/best-practices/images/channel-naming2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/best-practices/images/channel-naming2.png -------------------------------------------------------------------------------- /content/en/docs/contribution-guidelines/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/contribution-guidelines/_index.md -------------------------------------------------------------------------------- /content/en/docs/contribution-guidelines/local-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/contribution-guidelines/local-docs.md -------------------------------------------------------------------------------- /content/en/docs/contribution-guidelines/upgrade-graphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/contribution-guidelines/upgrade-graphs.md -------------------------------------------------------------------------------- /content/en/docs/getting-started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/docs/getting-started/_index.md -------------------------------------------------------------------------------- /content/en/images/4498B411F22DC186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/4498B411F22DC186.png -------------------------------------------------------------------------------- /content/en/images/Asset 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/Asset 1.png -------------------------------------------------------------------------------- /content/en/images/Asset 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/Asset 2.png -------------------------------------------------------------------------------- /content/en/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/arrow.svg -------------------------------------------------------------------------------- /content/en/images/bg-masthead-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/bg-masthead-green.svg -------------------------------------------------------------------------------- /content/en/images/bg-masthead-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/bg-masthead-red.svg -------------------------------------------------------------------------------- /content/en/images/bg-masthead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/bg-masthead.svg -------------------------------------------------------------------------------- /content/en/images/header-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/header-bg.svg -------------------------------------------------------------------------------- /content/en/images/ico-build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/ico-build.svg -------------------------------------------------------------------------------- /content/en/images/ico-discover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/ico-discover.svg -------------------------------------------------------------------------------- /content/en/images/ico-manage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/ico-manage.svg -------------------------------------------------------------------------------- /content/en/images/logo-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/logo-sm.svg -------------------------------------------------------------------------------- /content/en/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/logo.svg -------------------------------------------------------------------------------- /content/en/images/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/content/en/images/sprite.svg -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/go.sum -------------------------------------------------------------------------------- /hack/ci/link-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/hack/ci/link-check.sh -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/docs/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/docs/baseof.html -------------------------------------------------------------------------------- /layouts/docs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/docs/list.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/hooks/body-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/partials/hooks/body-end.html -------------------------------------------------------------------------------- /layouts/partials/hooks/head-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/partials/hooks/head-end.html -------------------------------------------------------------------------------- /layouts/partials/navbar-version-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/partials/navbar-version-selector.html -------------------------------------------------------------------------------- /layouts/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/partials/navbar.html -------------------------------------------------------------------------------- /layouts/partials/section-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/partials/section-index.html -------------------------------------------------------------------------------- /layouts/partials/sidebar-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/partials/sidebar-tree.html -------------------------------------------------------------------------------- /layouts/shortcodes/code_callout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/shortcodes/code_callout.html -------------------------------------------------------------------------------- /layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/layouts/shortcodes/mermaid.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/package.json -------------------------------------------------------------------------------- /static/favicons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/static/favicons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/static/favicons/favicon.ico -------------------------------------------------------------------------------- /static/favicons/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/static/favicons/pwa-192x192.png -------------------------------------------------------------------------------- /static/favicons/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/static/favicons/pwa-512x512.png -------------------------------------------------------------------------------- /static/favicons/tile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/static/favicons/tile150x150.png -------------------------------------------------------------------------------- /static/favicons/tile310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/static/favicons/tile310x150.png -------------------------------------------------------------------------------- /static/favicons/tile310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/static/favicons/tile310x310.png -------------------------------------------------------------------------------- /static/favicons/tile70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/olm-docs/HEAD/static/favicons/tile70x70.png --------------------------------------------------------------------------------