Source for the istio.io site
Go to file
Martin Taillefer e42f7ed9ba
New format for FAQ, allowing for deep links to answers and making it easier to browse. (#1013)
2018-02-19 05:31:16 -08:00
.circleci Attempt at fixing circleci failure (#756) 2017-12-07 10:40:06 -08:00
_about Fix a bunch of content errors. (#951) 2018-02-08 13:17:21 -08:00
_blog added mirroring blog (#952) 2018-02-12 00:28:06 -05:00
_data A few fixes (#1007) 2018-02-18 12:13:35 -08:00
_docs Update key/cert path (#1001) 2018-02-15 12:35:26 -08:00
_faq Add secure Ingress instructions. (#1002) 2018-02-15 12:03:25 -08:00
_glossary Add support for a dark color theme. (#966) 2018-02-11 18:10:12 -08:00
_help New format for FAQ, allowing for deep links to answers and making it easier to browse. (#1013) 2018-02-19 05:31:16 -08:00
_includes New format for FAQ, allowing for deep links to answers and making it easier to browse. (#1013) 2018-02-19 05:31:16 -08:00
_layouts New format for FAQ, allowing for deep links to answers and making it easier to browse. (#1013) 2018-02-19 05:31:16 -08:00
_sass New format for FAQ, allowing for deep links to answers and making it easier to browse. (#1013) 2018-02-19 05:31:16 -08:00
css Add support for a dark color theme. (#966) 2018-02-11 18:10:12 -08:00
favicons [ImgBot] optimizes images (#804) 2017-12-17 12:02:37 -08:00
img Add support for a dark color theme. (#966) 2018-02-11 18:10:12 -08:00
js Link improvements (#980) 2018-02-13 13:31:36 -05:00
scripts Update reference docs. (#942) 2018-02-06 20:48:33 -08:00
talks Rename Istio-Manager to Pilot (#360) 2017-06-08 16:46:36 -04:00
.firebaserc versioned docs: add build scripts to be driven thru jenkins (#368) 2017-06-12 09:23:11 -07:00
.gitignore added .DS_Store file to .gitignore (#950) 2018-02-07 21:11:29 -08:00
404.md Major update of the web site's infrastructure. (#826) 2018-01-03 08:16:28 -08:00
BingSiteAuth.xml Bing ownership validation. 2017-06-19 12:20:59 -07:00
CNAME update CNAME 2017-03-15 14:43:09 -04:00
CONTRIBUTING.md Fix broken links to CONTRIBUTING.md (#717) 2017-11-17 17:03:21 -08:00
Gemfile Fix to run new htmlproofer from docker (https instead of ssh url needed) (#779) 2017-12-07 17:23:30 -08:00
Gemfile.lock Fix to run new htmlproofer from docker (https instead of ssh url needed) (#779) 2017-12-07 17:23:30 -08:00
LICENSE extend copyright to 2018 (#843) 2018-01-06 12:28:55 -08:00
README.md fixes #874 2018-02-10 20:52:14 -08:00
Rakefile Fix to run new htmlproofer from docker (https instead of ssh url needed) (#779) 2017-12-07 17:23:30 -08:00
_config.yml Prepare for new generated reference content. (#889) 2018-01-29 06:44:07 -08:00
browserconfig.xml Site cleanup 2017-11-26 13:37:14 -08:00
community.md Major update of the web site's infrastructure. (#826) 2018-01-03 08:16:28 -08:00
feed.xml Fix feed.xml generation. (#813) 2017-12-20 11:27:52 -08:00
firebase.json versioned docs: add build scripts to be driven thru jenkins (#368) 2017-06-12 09:23:11 -07:00
googled6057396539986c3.html Add Google Search Console verification file. 2018-02-15 06:56:06 -08:00
index.html Add support for a dark color theme. (#966) 2018-02-11 18:10:12 -08:00
manifest.json Site cleanup 2017-11-26 13:37:14 -08:00
robots.txt Delete *.old files (#635) 2017-10-05 17:05:33 -07:00
search.md Add support for archiving istio.io contents. (#833) 2018-02-06 21:02:08 -08:00

README.md

istio.github.io

This repository contains the source code for the istio.io web site.

Please see the main Istio README file to learn about the overall Istio project and how to get in touch with us. To learn how you can contribute to any of the Istio components, please see the Istio contribution guidelines.

The website uses Jekyll templates and is hosted on GitHub Pages. Please make sure you are familiar with these before editing.

To run the site locally with Docker, use the following command from the toplevel directory for this git repo (e.g. pwd must be ~/github/istio.github.io if you were in ~/github when you issued git clone https://github.com/istio/istio.github.io.git)

# First time: (slow)
docker run --name istio-jekyll --volume=$(pwd):/srv/jekyll  -it -p 4000:4000 jekyll/jekyll:3.5.2 sh -c "bundle install && rake test && bundle exec jekyll serve --incremental --host 0.0.0.0"
# Then open browser with url 127.0.0.1:4000 to see the change.
# Subsequent, each time you want to see a new change and you stopped the previous run by ctrl+c: (much faster)
docker start istio-jekyll -a -i
# Clean up, only needed if you won't be previewing website changes for a long time or you want to start over:
docker rm istio-jekyll

The rake test part is to make sure you are not introducing html errors or bad links, you should see

HTML-Proofer finished successfully.

in the output

In some cases the --incremental may not work properly and you might have to remove it.

Local/Native Jekyll install:

Alternatively, if you just want to develop locally w/o Docker/Kubernetes/Minikube, you can try installing Jekyll locally. You may need to install other prerequisites manually (which is where using the docker image shines). Here's an example of doing so for Mac OS X:

xcode-select --install
sudo xcodebuild -license
brew install ruby
gem update --system
gem install bundler
gem install jekyll
cd istio.github.io
bundle install
bundle exec rake test
bundle exec jekyll serve