All Projects → redhat-cop → Openshift Migration Best Practices

redhat-cop / Openshift Migration Best Practices

Best practices for migrating from OpenShift 3 to 4

Labels

Projects that are alternatives of or similar to Openshift Migration Best Practices

Liquidjs
A simple, expressive, safe and Shopify compatible template engine in pure JavaScript.
Stars: ✭ 638 (+896.88%)
Mutual labels:  liquid
Timber
The ultimate Shopify theme framework, built by Shopify.
Stars: ✭ 911 (+1323.44%)
Mutual labels:  liquid
Liquid.net
.Net Port of the Liquid template language
Stars: ✭ 47 (-26.56%)
Mutual labels:  liquid
Liquidswipe
Android LiquidSwipe Library
Stars: ✭ 721 (+1026.56%)
Mutual labels:  liquid
Popup Ajax Subscribe Form
A newsletter subscription form for Shopify with cookie support and ajax submit, with support for both internal Shopify newsletter subscriptions or MailChimp based subscriptions
Stars: ✭ 8 (-87.5%)
Mutual labels:  liquid
Language Liquid
Liquid language support for Atom.
Stars: ✭ 28 (-56.25%)
Mutual labels:  liquid
Alembic
⚗️ A Jekyll boilerplate theme designed to be a starting point for any Jekyll website
Stars: ✭ 501 (+682.81%)
Mutual labels:  liquid
Shopify Naked
Completely naked Shopify theme to use as a starting point for theme development
Stars: ✭ 57 (-10.94%)
Mutual labels:  liquid
Liquid
Clojure Text Editor, for editing clojure code and markdown. Written entirely in Clojure with inspiration from Emacs and Vim.
Stars: ✭ 859 (+1242.19%)
Mutual labels:  liquid
Slater Theme
Shopify Starter theme based on slate
Stars: ✭ 47 (-26.56%)
Mutual labels:  liquid
Shopify Starter Theme
Shopify Starter Theme
Stars: ✭ 16 (-75%)
Mutual labels:  liquid
Condensation
A collection of handy extensions to the Liquid templating engine
Stars: ✭ 7 (-89.06%)
Mutual labels:  liquid
Jsx Lite
Write components once, run everywhere. Compiles to Vue, React, Solid, Angular, Svelte, and Liquid.
Stars: ✭ 1,015 (+1485.94%)
Mutual labels:  liquid
Cargo Generate
cargo, make me a project
Stars: ✭ 686 (+971.88%)
Mutual labels:  liquid
Plankton
Open source simulator for maritime robotics researchers
Stars: ✭ 51 (-20.31%)
Mutual labels:  liquid
Jekyll Rss Feeds
Templates for rendering RSS feeds for your Jekyll blog
Stars: ✭ 627 (+879.69%)
Mutual labels:  liquid
Jekyll Liquify
A Jekyll filter that parses Liquid from front matter
Stars: ✭ 21 (-67.19%)
Mutual labels:  liquid
Gojekyll
A fast clone of the Jekyll blogging engine, in Go
Stars: ✭ 62 (-3.12%)
Mutual labels:  liquid
Jekyll Assets
🎨 Asset pipelines for Jekyll.
Stars: ✭ 1,083 (+1592.19%)
Mutual labels:  liquid
Jekyll Timeline
Timeline / Résumé Theme with Jekyll
Stars: ✭ 46 (-28.12%)
Mutual labels:  liquid

Best practices for migrating from OpenShift Container Platform 3 to 4

Check https://redhat-cop.github.io/openshift-migration-best-practices/ for the rendered version of the documents.

Contributing

Read the Guidelines for Red Hat Documentation before opening a pull request.

You can test the changes to this repository via a container.

Run a Jekyll container

  • Clone repository, check out source branch and prepare the Jekyll site

    git clone -b source https://github.com/redhat-cop/openshift-migration-best-practices.git && cd openshift-migration-best-practices
    for i in .jekyll-cache _site; do mkdir ${i} && chmod 777 ${i}; done
    for i in Gemfile.lock; do touch ${i} && chmod 777 ${i}; done
    
  • On a SELinux enabled OS:

    podman run -it --rm --name jekyll -p 4000:4000 -v $(pwd):/srv/jekyll:Z jekyll/jekyll jekyll serve --watch --future
    

    NOTE: The Z at the end of the volume (-v) will relabel its contents so that it can be written from within the container, like running chcon -Rt svirt_sandbox_file_t -l s0:c1,c2 yourself. Be sure that you have changed your present working directory to the git cloned directory as shown above.

  • On an OS without SELinux:

    podman run -it --rm --name jekyll -p 4000:4000 -v $(pwd):/srv/jekyll jekyll/jekyll jekyll serve --watch --future
    

View the site

Visit http://<localhost>:4000 in your local browser.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].