Skip to content

Instantly share code, notes, and snippets.

View JameelB's full-sized avatar

Jameel Briones JameelB

View GitHub Profile
@JameelB
JameelB / cluster.json
Last active June 24, 2022 10:33
functions for setting up osd clusters. Add this to your .bashrc/.zshrc
{
"aws": {
"access_key_id": "string",
"account_id": "string",
"secret_access_key": "string"
},
"ccs": {
"enabled": true
},
"cloud_provider": {
{ "users": [
{
"username": "jdoe",
"enabled": true,
"email": "johndoe@example.com",
"firstName": "John",
"lastName": "Doe",
"realmRoles": ["offline_access", "uma_authorization"],
"clientRoles": {
"account": ["manage-account", "view-profile"]
@JameelB
JameelB / package.json
Created June 8, 2018 23:43
A sample package.json file for apollo-server-example
{
"name": "apollo-server-example",
"version": "1.0.0",
"description": "A sample graphql server using apollo",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"keywords": [],
"author": "",