Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ azure-env.sh
.openshift*
.DS_Store
openshift-install
node_modules
node_modules
.envrc
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Future work includes:
- Only known to work today with everything on one cluster. The work to expand this is in flight.
- If not using ARO you must either provide your own CA signed certs, or use let's encrypt.
- Must be on 4.16.14 or later.
**- Users must provide a NAT Gateway attached to the worker node subnet when using Azure.**

## Major versions

Expand All @@ -40,6 +41,7 @@ The pattern has been tested on Azure for two installation methods:
1. Installing onto an ARO cluster
2. Self managed OpenShift install using the `openshift-install` CLI. **REQUIRES ADDITIONAL CONFIGURATION**


### `1.0.0`
1.0.0 supports OpenShift Sandboxed containers version `1.8.1` along with Trustee version `0.2.0`.

Expand Down Expand Up @@ -78,6 +80,10 @@ This only has to be done once.

1. Run `sh scripts/gen-secrets.sh`

#### Check your cluster on Azure has a NAT gateway attached
OpenShift does not require a NAT gateway by default, however, peer-pods do require a NAT gateway attached to the worker node subnet.


#### Configuring let's encrypt.

Trustee requires a trusted CA issued certificate. Let's Encrypt is included for environments without a trusted cert on OpenShift's routes.
Expand Down
4 changes: 2 additions & 2 deletions rhdp/wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ sleep 60
echo "---------------------"
echo "pattern install"
echo "---------------------"
export KUBECONFIG=`pwd`/openshift-install/auth/kubeconfig
#export KUBECONFIG=`pwd`/openshift-install/auth/kubeconfig


./pattern.sh make install
#./pattern.sh make install
echo "---------------------"
echo "pattern install done"
echo "---------------------"
Expand Down
4 changes: 3 additions & 1 deletion values-simple.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ clusterGroup:
- kbs-access
- encrypted-storage
- experiment
- ripple


subscriptions:
# ACM is kept anticipating
Expand Down Expand Up @@ -95,7 +97,7 @@ clusterGroup:
# Default to 'safe' for ARO
overrides:
- name: letsencrypt.enabled
value: false
value: true
hello-openshift:
name: hello-openshift
namespace: hello-openshift
Expand Down
Loading