As a cluster-admin
user, with a correctly running Minishift, perform the following steps:
#!/usr/bin/env bash
# Turn colors in this script off by setting the NO_COLOR variable in your
# environment to any value:
#
#!/bin/bash | |
set -e | |
minishift addon enable istio | |
minishift addon apply istio |
#!/bin/bash | |
set -e | |
git clone https://github.com/minishift/minishift-addons | |
minishift addon install ./minishift-addons/add-ons/istio |
#!/bin/bash | |
set -e | |
# Create a profile called "servicemesh" | |
minishift profile set servicemesh | |
# give the profile 8GB of memory | |
minishift config set memory 8GB | |
# give the profile 4 CPU | |
minishift config set cpus 4 | |
# adding container image caching to allow faster profile setup |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Collaby by Code :: Demo Code for Photo and Filter</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- the javascript library used for build the Photo with Frames --> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/2.3.6/fabric.min.js"></script> |
'use strict'; | |
const gmap = require('@google/maps'); | |
function location(params) { | |
const latlng = JSON.parse(JSON.stringify(params.coords)) | |
const gmapClient = gmap.createClient({ | |
key: process.env.GOOGLE_MAPS_API_KEY, |
'use strict'; | |
const gmap = require('@google/maps'); | |
function location(params) { | |
const latlng = JSON.parse(JSON.stringify(params.coords)) | |
const gmapClient = gmap.createClient({ | |
key: process.env.GOOGLE_MAPS_API_KEY |
'use strict'; | |
const gmap = require('@google/maps'); | |
function location(params) { | |
const latlng = JSON.parse(JSON.stringify(params.coords)) | |
const gmapClient = gmap.createClient({ | |
key: process.env.GOOGLE_MAPS_API_KEY | |
}) | |
gmapClient.reverseGeocode({ | |
"latlng": latlng, |
podTemplate(name: 'maven33', label: 'maven33', cloud: 'openshift',serviceAccount: 'jenkins', containers: [ | |
containerTemplate(name: 'jnlp', | |
image: 'openshift/jenkins-slave-maven-centos7', | |
workingDir: '/tmp', | |
envVars: [ | |
envVar(key: 'MAVEN_MIRROR_URL',value: 'http://nexus.infra:8081/nexus/content/groups/public/') | |
], | |
cmd: '', | |
args: '${computer.jnlpmac} ${computer.name}') | |
]){ |
#!/bin/bash | |
set -o pipefail | |
set -e | |
oc login -u system:admin | |
oc project istio-system |