-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More doc and landing page improvements
- Loading branch information
Showing
21 changed files
with
164 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,6 @@ | |
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
website/build | ||
website/site-dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Build and deploy the website | ||
|
||
set -euo pipefail | ||
|
||
# wesbite folder | ||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" | ||
|
||
pushd $DIR > /dev/null | ||
echo "Building website ..." | ||
#npm run build | ||
|
||
msg="Website update: $(date)" | ||
|
||
if [ ! -d "./site-dist" ]; then | ||
echo "Cloning website project" | ||
git clone git@github.com:cf-stratos/website.git site-dist | ||
else | ||
echo "Updating site checkout" | ||
cd site-dist | ||
git fetch | ||
git reset --hard origin/master | ||
git clean -fd | ||
git rebase | ||
cd .. | ||
fi | ||
|
||
echo "Copying newer site content ..." | ||
rsync -r ./build/ ./site-dist | ||
|
||
cd site-dist | ||
echo "Adding all files" | ||
git add -A | ||
git commit -m "${msg}" | ||
echo "Pushing changes ..." | ||
git push | ||
cd .. | ||
|
||
popd > /dev/null |
5 changes: 2 additions & 3 deletions
5
...te/docs/guides/admin/invite-user-guide.md → website/docs/advanced/invite-user-guide.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
website/docs/guides/admin/sso.md → website/docs/advanced/sso.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
id: deploy-overview | ||
title: Deploying Stratos | ||
sidebar_label: Overview | ||
--- | ||
|
||
Stratos can be deployed in the following environments: | ||
|
||
1. Cloud Foundry, as an application. See [guide](cloud-foundry) | ||
2. Kubernetes, using a Helm chart. See [guide](kubernetes) | ||
3. Docker, single container deploying all components. See [guide](all-in-one) | ||
|
||
> Note: that not all features are enabled in every environment - the Kubernetes deployment supports all features, but Cloud Foundry and Docker deployments do not support some features. | ||
> Note: Some features are marked as 'Tech Preview' and are only available if tech preview features are enabled when deploying. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.