-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from mlbiam/master
readmes
- Loading branch information
Showing
17 changed files
with
1,936 additions
and
9 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
Large diffs are not rendered by default.
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
Large diffs are not rendered by default.
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,219 @@ | ||
# Orchestra Login Portal for GitHub | ||
|
||
[![Alt text](https://i.vimeocdn.com/video/735154945_640.webp)](https://vimeo.com/349103618) | ||
|
||
*Short video of logging into Kubernetes and using kubectl using GitHub* | ||
|
||
Orchestra Login Portal provides a login portal for Kubernetes that allows you to authenticate with GitHub, use GitHub teams and organizations for RBAC authorizations and provides integration for both `kubectl` and the Kubernetes Dashboard (https://github.com/kubernetes/dashboard). The portal runs inside of Kubernetes, leveraging Kubernetes for scalability, secret management and deployment. | ||
|
||
![Orchestra Login Portal Architecture](https://raw.githubusercontent.com/OpenUnison/openunison-k8s-login-github/master/imgs/openunison_qs_kubernetes.png) | ||
|
||
When a user accesses Kubernetes using Orchestra, they'll access both the login portal and the dashboard through OpenUnison (instead of directly via an ingress). OpenUnison will inject the user's identity into each request, allowing the dashboard to act on their behalf. The login portal has no external dependencies outside of GitHub and Kubernetes. All objects for session state are stored as CRDs. | ||
|
||
# Deployment | ||
|
||
## Watch a Video | ||
|
||
This 7 minute video shows the entire deployment and user onboarding process | ||
|
||
[![Alt text](https://i.vimeocdn.com/video/735306153_640.webp)](https://vimeo.com/349107631) | ||
|
||
## What You Need To Start | ||
|
||
Prior to deploying Orchestra you will need: | ||
|
||
1. Kubernetes 1.10 or higher | ||
2. The Nginx Ingress Controller deployed (https://kubernetes.github.io/ingress-nginx/deploy/) | ||
3. Client id and secret from a GitHub OAuth2 Application | ||
4. Deploy the dashboard to your cluster | ||
5. helm 3.0+ | ||
|
||
When creating your GitHub OAuth2 application, the callback URL is `https://host_name/auth/github` where `host_name` is the host you want to use for your login portal. | ||
|
||
The deployment is a four step process: | ||
|
||
1. Add Tremolo Security's Helm repo to your own | ||
2. Deploy the OpenUnison Operator | ||
3. Create a secret for your Active Directory password | ||
4. Deploy OpenUnison | ||
|
||
|
||
## Add Tremolo Security's Helm Repo | ||
|
||
``` | ||
helm repo add tremolo https://nexus.tremolo.io/repository/helm/ | ||
helm repo update | ||
``` | ||
|
||
## Deploy The OpenUnison Operator | ||
|
||
Create your namespace | ||
``` | ||
kubectl create ns openunison | ||
``` | ||
|
||
Deploy the operator | ||
``` | ||
helm install openunison tremolo/openunison-operator --namespace openunison | ||
``` | ||
|
||
Wait for the operator pod to be available | ||
``` | ||
watch kubectl get pods -n openunison | ||
``` | ||
|
||
## Create A Secret For Your Active Directory Password | ||
|
||
Create a secret in the `openunison` namespace: | ||
|
||
``` | ||
apiVersion: v1 | ||
type: Opaque | ||
metadata: | ||
name: orchestra-secrets-source | ||
namespace: openunison | ||
data: | ||
GITHUB_SECRET_ID: aW0gYSBzZWNyZXQ= | ||
K8S_DB_SECRET: aW0gYSBzZWNyZXQ= | ||
unisonKeystorePassword: aW0gYSBzZWNyZXQ= | ||
kind: Secret | ||
``` | ||
|
||
| Property | Description | | ||
| -------- | ----------- | | ||
| GITHUB_SECRET_ID | The secret from your GitHub OAuth2 application | | ||
| unisonKeystorePassword | The password for OpenUnison's keystore, should NOT contain an ampersand (`&`) | | ||
| K8S_DB_SECRET | A random string of characters used to secure the SSO process with the dashboard. This should be long and random, with no ampersands (`&`) | | ||
|
||
|
||
## Deploy OpenUnison | ||
|
||
Copy `values.yaml` (https://raw.githubusercontent.com/OpenUnison/helm-charts/master/openunison-k8s-login-github/values.yaml) and update as appropriate: | ||
|
||
| Property | Description | | ||
| -------- | ----------- | | ||
| network.openunison_host | The host name for OpenUnison. This is what user's will put into their browser to login to Kubernetes | | ||
| network.dashboard_host | The host name for the dashboard. This is what users will put into the browser to access to the dashboard. **NOTE:** `network.openunison_host` and `network.dashboard_host` Both `network.openunison_host` and `network.dashboard_host` **MUST** point to OpenUnison | | ||
| network.api_server_host | The host name to use for the api server reverse proxy. This is what `kubectl` will interact with to access your cluster. **NOTE:** `network.openunison_host` and `network.dashboard_host` | | ||
| network.k8s_url | The URL for the Kubernetes API server | | ||
| network.session_inactivity_timeout_seconds | The number of seconds of inactivity before the session is terminated, also the length of the refresh token's session | | ||
| cert_template.ou | The `OU` attribute for the forward facing certificate | | ||
| cert_template.o | The `O` attribute for the forward facing certificate | | ||
| cert_template.l | The `L` attribute for the forward facing certificate | | ||
| cert_template.st | The `ST` attribute for the forward facing certificate | | ||
| cert_template.c | The `C` attribute for the forward facing certificate | | ||
| certs.use_k8s_cm | Tells the deployment system if you should use k8s' built in certificate manager. If your distribution doesn't support this (such as Canonical and Rancher), set this to false | | ||
| myvd_config_path | The path to the MyVD configuration file, unless being customized, use `WEB-INF/myvd.conf` | | ||
| dashboard.namespace | The namespace for the dashboard. For the 1.x dashboard this is `kube-system`, for the 2.x dashboard this is `kubernetes-dashboard` | | ||
| dashboard.cert_name | The name of the secret in the dashboard's namespace that stores the certificate for the dashboard | | ||
| dashboard.label | The label of the dashboard pod, this is used to delete the pod once new certificates are generated | | ||
| dashboard.service_name | The name of the service object for the dashboard | | ||
| k8s_cluster_name | The name of the cluster to use in the `./kube-config`. Defaults to `kubernetes` | | ||
| image | The name of the image to use | | ||
| enable_impersonation | If `true`, OpenUnison will run in impersonation mode. Instead of OpenUnison being integrated with Kubernetes via OIDC, OpenUnison will be a reverse proxy and impersonate users. This is useful with cloud deployments where oidc is not an option | | ||
| monitoring.prometheus_service_account | The prometheus service account to authorize access to the /monitoring endpoint | | ||
| github.client_id | The client id from your OAuth2 application configuration | | ||
| github.teams | A comma separated list of authorized teams and organizations. An organization is listed in the format `OrgName/` and a team in the formate `OrgName/TeamName` | | ||
|
||
|
||
Finally, run the helm chart: | ||
|
||
`helm install orchestra tremolo/openunison-k8s-login-github --namespace openunison -f /path/to/values.yaml` | ||
|
||
|
||
## Complete SSO Integration with Kubernetes | ||
|
||
Run `kubectl describe configmap api-server-config -n openunison` to get the SSO integration artifacts. The output will give you both the API server flags that need to be configured on your API servers. The certificate that needs to be trusted is in the `ou-tls-certificate` secret in the `openunison` namespace. | ||
|
||
## First Login | ||
|
||
To login, open your browser and go to the host you specified for `OU_HOST` in your `input.props`. For instance if `OU_HOST` is `k8sou.tremolo.lan` then navigate to https://k8sou.tremolo.lan. You'll be prompted for your Active Directory username and password. Once authenticated you'll be able login to the portal and generate your `.kube/config` from the Tokens screen. | ||
|
||
## Authorizing Access via RBAC | ||
|
||
On first login, if you haven't authorized access to any Kubernetes roles you won't be able to do anything. There are two approaches you can take: | ||
|
||
### Organization / Team Driven Membership | ||
|
||
Kubernetes will see your user's organizations and teams as groups. To authorize users based on these groups, list them in your RBAC policies as groups with organizations being in the format `OrgName/` and teams being the format `OrgName/TeamName`. To authorize members of team `TremnoloSecurity/Ownsers` to be cluster administrators, we create a `ClusterRoleBinding`: | ||
|
||
``` | ||
kind: ClusterRoleBinding | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: github-cluster-admins | ||
subjects: | ||
- kind: Group | ||
name: TremoloSecurity/Owners | ||
roleRef: | ||
kind: ClusterRole | ||
name: cluster-admin | ||
apiGroup: rbac.authorization.k8s.io | ||
``` | ||
|
||
### User Driven Membership | ||
|
||
If you are not able to use teams or organizations in GitHub, you can directly add users to role bindings. Kubernetes requires that you identify openid connect users with the prefix of the url of the identity provider. So if your `OU_HOST` is `k8sou.tremolo.lan` and your user's login is `mmosley` your username to Kubernetes would be `https://k8sou.tremolo.lan/auth/idp/k8sIdp#mmosley`. To create a cluster role binding to give cluster-admin access to a specific user: | ||
|
||
``` | ||
kind: ClusterRoleBinding | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: github-cluster-admins | ||
subjects: | ||
- kind: User | ||
name: https://k8sou.tremolo.lan/auth/idp/k8sIdp#mmosley | ||
roleRef: | ||
kind: ClusterRole | ||
name: cluster-admin | ||
apiGroup: rbac.authorization.k8s.io | ||
``` | ||
|
||
*NOTE*: There are multiple reasons this is a bad idea: | ||
1. Hard to audit - There is no easy way to say "what role bindings is `mmosley` a member of? | ||
2. Difficult to remove access - Same reason as #1, you need to figure out every role binding a user is a member of to remove | ||
3. Easy to get wrong - If you mistype a user's login id Kubernetes won't tell you | ||
|
||
# Using Your Own Certificates | ||
|
||
If you want to integrate your own certificates see our wiki entry - https://github.com/TremoloSecurity/OpenUnison/wiki/troubleshooting#how-do-i-change-openunisons-certificates | ||
|
||
# Monitoring OpenUnison | ||
|
||
This deployment comes with a `/metrics` endpoint for monitoring. For details on how to integrate it into a Prometheus stack - https://github.com/TremoloSecurity/OpenUnison/wiki/troubleshooting#how-do-i-monitor-openunison-with-prometheus. | ||
|
||
# Trouble Shooting Help | ||
|
||
Please take a look at https://github.com/TremoloSecurity/OpenUnison/wiki/troubleshooting if you're running into issues. If there isn't an entry there that takes care of your issue, please open an issue on this repo. | ||
|
||
# Whats next? | ||
|
||
Now you can begin mapping OpenUnison's capabilities to your business and compliance needs. For instance you can add multi-factor authentication with TOTP or U2F, Create privileged workflows for onboarding, scheduled workflows that will deprovision users, etc. | ||
|
||
# Customizing Orchestra | ||
|
||
Orchestra is an application built on OpenUnison with several "opinions" on how you should manage authentication in your cluster. These opinions my be close to what you need, but not exact. In order to customize Orchestra you'll need: | ||
|
||
1. git | ||
2. OpenJDK 8 | ||
3. Apache Maven | ||
4. Docker registry | ||
|
||
First, fork this GitHub project. Then make your edits. To deploy to a local Docker daemon that you want to then use to push to a registry: | ||
|
||
``` | ||
mvn clean package | ||
mvn compile jib:dockerBuild | ||
docker tag image:version registry/image:version | ||
docker push registry/image:version | ||
``` | ||
|
||
If you have credentials to access a registry remotely and are not running docker locally, you can push the image directly to your registry: | ||
|
||
``` | ||
mvn clean package | ||
export OU_CONTAINER_DEST=registry/image:version | ||
export OU_REG_USER=registry_user | ||
export OU_REG_PASSWORD=registry_password | ||
mvn compile jib:build | ||
``` |
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.