├── .flake8 ├── .gitignore ├── .gitmodules ├── .isort.cfg ├── .pre-commit-config.yaml ├── .yaspeller.json ├── README.md ├── archetypes └── default.md ├── config.toml ├── content ├── _index.md ├── about.md ├── api │ └── _index.md ├── baremetal │ └── _index.md ├── certificates │ └── _index.md ├── cleanup │ └── _index.md ├── cluster │ └── _index.md ├── clusterversion │ └── _index.md ├── configuration │ └── _index.md ├── deployments │ └── _index.md ├── identity │ └── _index.md ├── images │ └── _index.md ├── labelling │ └── _index.md ├── machine-config │ └── _index.md ├── monitoring │ └── _index.md ├── networking │ └── _index.md ├── oc │ └── _index.md ├── olm │ └── _index.md ├── plugins │ └── _index.md ├── pullsecrets │ └── _index.md ├── registries │ └── _index.md ├── routers │ └── _index.md ├── secrets │ └── _index.md ├── storage │ └── _index.md ├── troubleshooting │ └── _index.md └── upgrades │ └── _index.md ├── hack └── update_weights.sh ├── layouts ├── _default │ └── list.html └── partials │ └── head.html ├── netlify.toml └── static └── css └── custom.css /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public/* 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/.gitmodules -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | known_third_party = 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.yaspeller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/.yaspeller.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/config.toml -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/about.md -------------------------------------------------------------------------------- /content/api/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/api/_index.md -------------------------------------------------------------------------------- /content/baremetal/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/baremetal/_index.md -------------------------------------------------------------------------------- /content/certificates/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/certificates/_index.md -------------------------------------------------------------------------------- /content/cleanup/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/cleanup/_index.md -------------------------------------------------------------------------------- /content/cluster/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/cluster/_index.md -------------------------------------------------------------------------------- /content/clusterversion/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/clusterversion/_index.md -------------------------------------------------------------------------------- /content/configuration/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/configuration/_index.md -------------------------------------------------------------------------------- /content/deployments/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/deployments/_index.md -------------------------------------------------------------------------------- /content/identity/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/identity/_index.md -------------------------------------------------------------------------------- /content/images/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/images/_index.md -------------------------------------------------------------------------------- /content/labelling/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/labelling/_index.md -------------------------------------------------------------------------------- /content/machine-config/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/machine-config/_index.md -------------------------------------------------------------------------------- /content/monitoring/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/monitoring/_index.md -------------------------------------------------------------------------------- /content/networking/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/networking/_index.md -------------------------------------------------------------------------------- /content/oc/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/oc/_index.md -------------------------------------------------------------------------------- /content/olm/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/olm/_index.md -------------------------------------------------------------------------------- /content/plugins/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/plugins/_index.md -------------------------------------------------------------------------------- /content/pullsecrets/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/pullsecrets/_index.md -------------------------------------------------------------------------------- /content/registries/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/registries/_index.md -------------------------------------------------------------------------------- /content/routers/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/routers/_index.md -------------------------------------------------------------------------------- /content/secrets/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/secrets/_index.md -------------------------------------------------------------------------------- /content/storage/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/storage/_index.md -------------------------------------------------------------------------------- /content/troubleshooting/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/troubleshooting/_index.md -------------------------------------------------------------------------------- /content/upgrades/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/content/upgrades/_index.md -------------------------------------------------------------------------------- /hack/update_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/hack/update_weights.sh -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/netlify.toml -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshifttips/web/HEAD/static/css/custom.css --------------------------------------------------------------------------------