https://github.com/onzack/rancher-saas-chart
ONZACK Rancher Software as a Service
https://github.com/onzack/rancher-saas-chart
kubernetes managed-services rancher
Last synced: 2 months ago
JSON representation
ONZACK Rancher Software as a Service
- Host: GitHub
- URL: https://github.com/onzack/rancher-saas-chart
- Owner: onzack
- License: apache-2.0
- Created: 2020-12-04T17:11:00.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-31T16:13:37.000Z (about 5 years ago)
- Last Synced: 2025-02-15T11:38:40.297Z (over 1 year ago)
- Topics: kubernetes, managed-services, rancher
- Language: Shell
- Homepage:
- Size: 212 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ONZACK Rancher Software as a Service Helm Chart
This repository contains the Code for ONZACK Rancher Software as a Service.
# Quick Start
## Prepare
You need:
- A Kubernetes cluster with an Ingress Controller
- A loadbalancer or DNS entry for *.rancher.example.com pointing to your cluster
- TLS keys and certificates
Make sure to replace *.rancher.example.com with the values from your environment.
## Install
Clone this repository:
```
git clone -b refactoring https://github.com/onzack/rancher-saas-chart.git
```
Create a custom values file for Helm:
```
cat << EOF >> custom-values.yaml
# Infrastructure environemnt specific values for Rancher SaaS.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
rancher:
tag: v2.5.6
twoPointFive: true
rancherGuard:
enabled: false
storage:
enabled: false
ingress:
letsEncrypt:
enabled: false
EOF
```
Install a Rancher SaaS instance with the name "rancher-dev1":
```
helm upgrade --install -n rancher-dev1 \
-f ./rancher-saas-chart/deployments/kubernetes/helm/rancher-saas/size-S.yaml \
-f custom-values.yaml \
--set rancher.size=S \
--set ingress.TLSkey="TLS Key base64 encoded" \
--set ingress.TLScert="TLS Cert base64 encoded" \
--set ingress.CAcert="TLS CA cert base64 encoded" \
--set rancher.instanceName=rancher-dev1 \
--set ingress.domain="rancher.example.com" \
rancher-dev1 ./rancher-saas-chart/deployments/kubernetes/helm/rancher-saas
```
To access your new Rancher instance go to https://rancher-dev1.rancher.example.com.
More documentation will follow.
# Licence
Copyright 2021 ONZACK AG
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.