{{ i18n "pageNotFound" }}
6 |7 |
8 | ├── .gitignore ├── specs ├── ns │ ├── ns.yaml │ └── pod.yaml ├── sd │ ├── other-ns.yaml │ ├── svc.yaml │ ├── other-svc.yaml │ ├── jumpod.yaml │ ├── rc.yaml │ └── other-rc.yaml ├── pv │ ├── pvc.yaml │ ├── deploy.yaml │ └── pv.yaml ├── services │ ├── svc.yaml │ └── rc.yaml ├── healthz │ ├── nap-svc.yaml │ ├── ready.yaml │ ├── pod.yaml │ ├── badpod.yaml │ └── nap-rc.yaml ├── labels │ ├── pod.yaml │ └── anotherpod.yaml ├── logging │ ├── oneshotpod.yaml │ └── pod.yaml ├── nodes │ └── pod.yaml ├── envs │ └── pod.yaml ├── pods │ ├── constraint-pod.yaml │ ├── oc-constraint-pod.yaml │ └── pod.yaml ├── jobs │ └── job.yaml ├── rcs │ └── rc.yaml ├── secrets │ └── pod.yaml ├── deployments │ ├── d09.yaml │ └── d10.yaml ├── volumes │ └── pod.yaml ├── pf │ └── app.yaml └── ic │ └── deploy.yaml ├── themes └── beautifulhugo │ ├── archetypes │ └── default.md │ ├── static │ ├── img │ │ ├── path.jpg │ │ ├── favicon.ico │ │ ├── hexagon.jpg │ │ ├── sphere.jpg │ │ ├── triangle.jpg │ │ ├── avatar-icon.png │ │ ├── favicon.ico.zip │ │ ├── sphere-thumb.jpg │ │ ├── 404-southpark.jpg │ │ ├── avatar-favicon.png │ │ ├── hexagon-thumb.jpg │ │ └── triangle-thumb.jpg │ ├── css │ │ ├── main-minimal.css │ │ ├── highlight.min.css │ │ ├── pygment_highlights.css │ │ ├── hugo-easy-gallery.css │ │ └── main.css │ └── js │ │ ├── load-photoswipe.js │ │ └── main.js │ ├── layouts │ ├── _default │ │ ├── single.html │ │ ├── baseof.html │ │ ├── terms.html │ │ └── list.html │ ├── partials │ │ ├── translation_link.html │ │ ├── head_custom.html │ │ ├── footer_custom.html │ │ ├── disqus.html │ │ ├── post_meta.html │ │ ├── script.html │ │ ├── header.html │ │ ├── head.html │ │ ├── footer.html │ │ └── nav.html │ ├── 404.html │ ├── page │ │ └── single.html │ ├── post │ │ └── single.html │ ├── shortcodes │ │ ├── figure.html │ │ ├── gallery.html │ │ ├── load-photoswipe.html │ │ └── load-photoswipe-theme.html │ └── index.html │ ├── theme.toml │ ├── i18n │ ├── ja.yaml │ └── en.yaml │ ├── LICENSE │ ├── data │ └── beautifulhugo │ │ └── social.toml │ └── README.md ├── static └── img │ ├── kbe-logo.ico │ ├── kbe-logo.png │ └── Icon-Red_Hat-Media_and_documents-Paper_Stack_Blank-A-Black-RGB.png ├── .gitmodules ├── content ├── _index.md └── page │ ├── diy.md │ ├── pf.md │ ├── proxy.md │ ├── ic.md │ ├── rcs.md │ ├── secrets.md │ ├── logging.md │ ├── volumes.md │ ├── statefulset.md │ ├── jobs.md │ ├── labels.md │ ├── ns.md │ ├── pv.md │ ├── envs.md │ ├── sd.md │ ├── pods.md │ ├── deployments.md │ ├── nodes.md │ ├── healthz.md │ └── services.md ├── README.md ├── config.toml └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /public/ 3 | -------------------------------------------------------------------------------- /specs/ns/ns.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: test 5 | -------------------------------------------------------------------------------- /themes/beautifulhugo/archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | subtitle: "" 3 | tags: [] 4 | --- 5 | -------------------------------------------------------------------------------- /specs/sd/other-ns.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: other 5 | -------------------------------------------------------------------------------- /static/img/kbe-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/static/img/kbe-logo.ico -------------------------------------------------------------------------------- /static/img/kbe-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/static/img/kbe-logo.png -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "public"] 2 | path = public 3 | url = git@github.com:openshift-evangelists/kbe.git 4 | branch = gh-pages 5 | -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/path.jpg -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/favicon.ico -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/hexagon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/hexagon.jpg -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/sphere.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/sphere.jpg -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/triangle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/triangle.jpg -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/avatar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/avatar-icon.png -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/favicon.ico.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/favicon.ico.zip -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/sphere-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/sphere-thumb.jpg -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/404-southpark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/404-southpark.jpg -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/avatar-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/avatar-favicon.png -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/hexagon-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/hexagon-thumb.jpg -------------------------------------------------------------------------------- /themes/beautifulhugo/static/img/triangle-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift-evangelists/kbe/HEAD/themes/beautifulhugo/static/img/triangle-thumb.jpg -------------------------------------------------------------------------------- /themes/beautifulhugo/layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |
8 | 21 | {{- .Get "caption" -}} 22 | {{- with .Get "attrlink"}}{{ .Get "attr" }}{{ else }}{{ .Get "attr"}}{{ end -}} 23 |
24 | {{- end }} 25 |