I hereby claim:
- I am jgwerner on github.
- I am gregillumideskco (https://keybase.io/gregillumideskco) on keybase.
- I have a public key ASCQCuLMin1J0bMyPLIBc1oY5nurmeXrMFrup7SLYosxLwo
To claim this, I am signing this object:
provider "aws" { | |
region = "us-west-2" | |
} | |
resource "aws_vpc" "example" { | |
cidr_block = "10.0.0.0/16" | |
tags = { | |
Name = "example-vpc" | |
} | |
} |
I hereby claim:
To claim this, I am signing this object:
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ | |
@import "~antd/lib/style/color/colors.less"; | |
@theme: default; | |
// The prefix to use on all css classes from ant. | |
@ant-prefix: ant; | |
// An override for the html selector for theme prefixes | |
@html-selector: html; |
@import "~antd/lib/style/color/colors.less"; | |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;500;700;900&display=swap&css'); | |
body{ | |
font-family: 'Inter', sans-serif; | |
} | |
:global(.site-layout) :global(.site-layout-background) { | |
background: @white; | |
position: relative; |
We have successfully set up a working version of Keycloak with Kubernetes (we are using AWS EKS) with JupyterHub using the [ingress-nginx)(https://github.com/kubernetes/ingress-nginx) as a reverse proxy. Keycloak is set up with JupyterHub as a standard OIDC client (confidential) and the JupyterHub successfully redirects to the Keycloak page that prompts the user to login. (For FYI this configuration is set up with the GenericOAuthenticator).
The Keyclaok Identity Provider has been tested with multiple third-party SAML IdP's, such as Okta and Auth0. The Keycloak broker successfully connects with the IdP and the user is prompted to add their credentials. After succussfully authenticating, however, the Keycloak service returns:
14:39:41,946 WARN [org.keycloak.events] (default task-60) type=IDENTITY_PROVIDER_RESPONSE_ERROR
hostAliases: [] | |
commonLabels: {} | |
commonAnnotations: {} | |
clusterDomain: cluster.local | |
extraDeploy: [] | |
image: | |
registry: docker.io | |
repository: illumidesk/keycloak | |
tag: latest | |
## Specify a imagePullPolicy |
""" | |
Creates the shared grader notebook list by looping through a course array and then calls the | |
grader-setup-service microservice to create the grader notebook for the course if it doesn't exist. | |
All courses are created as deployments. To fetch a list of grader deployments that should be reflected | |
then run: | |
``` | |
kubectl get deployment -n <namespace> | |
``` |
# remove docker images by line in text file | |
# alternative to `docker images purge` | |
!/bin/bash | |
images_file=dangling_images.txt | |
list_dangling_images () { | |
docker images --filter dangling=true | while read IMAGE_ID; do | |
>> $images_file | |
done |
# Based in large part from https://github.com/canha/golang-tools-install-script | |
#!/bin/bash | |
set -e | |
VERSION="1.9" | |
print_help() { | |
echo "Usage: bash goinstall.sh OPTION" | |
echo -e "\nOPTIONS:" |