One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| (function pollSSOLogs() { | |
| const sessionKey = '<ADD_KEY_HERE>'; | |
| const interval = 1 * 60 * 1000; // adjust - set to 1 minute | |
| let intervalId; | |
| function readSSOLogs() { | |
| try { | |
| const data = sessionStorage.getItem(sessionKey); | |
| if (data) { | |
| console.log(`[${new Date().toISOString()}] SSO Logs:`); |
| (function pollSSOLogs() { | |
| const sessionKey = '<ADD_KEY_HERE>'; | |
| const interval = 1 * 60 * 1000; // adjust - set to 1 minute | |
| let intervalId; | |
| function readSSOLogs() { | |
| try { | |
| const data = sessionStorage.getItem(sessionKey); | |
| if (data) { | |
| console.log(`[${new Date().toISOString()}] SSO Logs:`); |
| const fs = require('fs'); | |
| function readHarFile(filePath) { | |
| fs.readFile(filePath, 'utf8', (err, data) => { | |
| if (err) { | |
| console.error('Error reading the file:', err); | |
| return; | |
| } | |
| const harData = JSON.parse(data); | |
| analyzeHarData(harData); |
| const moment = require('moment'); | |
| var startDate = moment('2019-03-12'); | |
| var endDate = moment('2019-05-04'); | |
| var result = []; | |
| var endOfMonth; | |
| if (endDate.isBefore(startDate)) { | |
| throw "End date must be greated than start date." | |
| } | |
| while (startDate.isBefore(endDate)) { |
| const moment = require('moment'); | |
| let startDate = moment('2019-03-12'); | |
| let endDate = moment('2019-05-04'); | |
| let result = []; | |
| if (endDate.isBefore(startDate)) { | |
| throw "End date must be greated than start date." | |
| } | |
| while (startDate.isBefore(endDate)) { | |
| let endOfWeek = startDate.clone().endOf('week').format("YYYY-MM-DD") |
| { | |
| "Version": "2008-10-17", | |
| "Id": "S3PolicyId1", | |
| "Statement": [ | |
| { | |
| "Sid": "IPAllow", | |
| "Effect": "Allow", | |
| "Principal": { | |
| "AWS": "*" | |
| }, |
| $ gcloud container clusters create --cluster-version=1.9.7-gke.6 my-cluster --num-nodes 3 --zone us-central1-a | |
| Creating cluster my-cluster...done. | |
| kubeconfig entry generated for my-cluster. | |
| NAME LOCATION MASTER_VERSION MASTER_IP MACHINE_TYPE NODE_VERSION NUM_NODES STATUS | |
| my-cluster us-central1-a 1.9.7-gke.6 35.232.228.130 n1-standard-1 1.9.7-gke.6 3 RUNNING | |
| $ kubectl create clusterrolebinding kubeless-cluster-admin --clusterrole=cluster-admin --user=<your gcp user-id> | |
| clusterrolebinding.rbac.authorization.k8s.io "kubeless-cluster-admin" created | |
| $ export RELEASE=$(curl -s https://api.github.com/repos/kubeless/kubeless/releases/latest | grep tag_name | cut -d '"' -f 4) |
| # EDITOR=nano sudo visudo | |
| # Change the following line: (:i to insert + esc to go back + :w to save + :q to quit) | |
| # Defaults env_reset | |
| # to: | |
| # Defaults env_reset,timestamp_timeout=960 # in minutes | |
| export PATH=$PATH:. | |
| # export PATH=$PATH:/usr/bin |
| #!/usr/bin/env bash | |
| git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done | |
| git fetch --all | |
| git pull --all |