The most up to date of this document now lives here https://github.com/kaovilai/homeroom-basic_tutorial_workshop/blob/master/workshop/content/setup.md
This file contains hidden or 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
#############USER############# | |
#compiles a single exercise | |
ex = []#name here | |
arg = []#arguments here | |
############################## | |
#######################DEV############################ | |
all: | |
gcc -g -pg -Wall -std=c99 $(ex).c -o $(ex) | |
run: all |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Once you have ordered DEV Admin Storage, ssh to bastion and run the following
oc set env deploymentconfigs.apps.openshift.io admin -n labguide -e DOWNLOAD_URL=https://raw.githubusercontent.com/openshift/openshift-cns-testdrive/ocp4-dev/labguide
Check status with
oc rollout status dc/admin -n labguide
This file contains hidden or 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
TARGET_HOST=$(hostname) | |
OCP_USERNAME="$(oc whoami)" | |
GUID=$(hostname | cut -d\. -f2) | |
# a TARGET_HOST is specified in the command line, without using an inventory file | |
ansible-playbook -i ${TARGET_HOST}, ./configs/ocp-student-workloads/ocp-student-workloads.yml \ | |
-e"ansible_ssh_private_key_file=~/.ssh/id_rsa" \ | |
-e"ansible_user=$(whoami)" \ | |
-e"ocp_username=${OCP_USERNAME}" \ | |
-e"ocp_workloads=ocp4-workload-istio-controlplane,ocp4-workload-istio-tutorial,ocp4-workload-workshop-dashboard-cluster-admin" \ |
This file contains hidden or 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
//Age of task | |
concat(format(dateBetween(prop("Date Created"), now(), "days")), " days old"); | |
//If Due Date is empty, don't display due in | |
if(empty(prop("Due Date")), "", "Due in " + format(dateBetween(prop("Due Date"), now(), "days")) + " days") | |
//Combined | |
concat(format(dateBetween(now(), prop("Date Created"), "days")), " days old") + if(empty(prop("Due Date")), "", "; Due in " + format(dateBetween(prop("Due Date"), now(), "days")) + "D " + format(dateBetween(prop("Due Date"), now(), "hours") - 24 * dateBetween(prop("Due Date"), now(), "days")) + "H " + format(dateBetween(prop("Due Date"), now(), "minutes") - 60 * dateBetween(prop("Due Date"), now(), "hours")) + "M " + format(dateBetween(prop("Due Date"), now(), "seconds") - 60 * dateBetween(prop("Due Date"), now(), "minutes")) + "S") + if(empty(prop("blocked by")), "", "\nBlocked by '" + prop("blocked by") + "'") + if(empty(prop("blocking")), "", "; \nblocking: '" + prop("blocking") + "'") |
This file contains hidden or 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
Contract tracing tech from Google and Apple is now available in NC! Anonymous and No login required! | |
The app uses bluetooth only and doesn't track your location. The purpose is to allow an exposed person to notify you anonymously that you have been exposed and should get tested. | |
Whitepapers | |
https://developer.apple.com/exposure-notification/ | |
https://www.google.com/covid19/exposurenotifications/ | |
SlowCovidNC Homepage | |
https://covid19.ncdhhs.gov/slowcovidnc |
This file contains hidden or 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
kind: ImageStream | |
apiVersion: image.openshift.io/v1 | |
metadata: | |
name: nginx | |
namespace: nginx-example | |
uid: 6c4952d1-583c-415b-ae3a-247fe0f56381 | |
resourceVersion: '14604570' | |
generation: 1 | |
creationTimestamp: '2021-08-26T16:16:03Z' | |
annotations: |
This file contains hidden or 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
[DEVICE_PROVISIONED]: [1] | |
[aaudio.hw_burst_min_usec]: [2000] | |
[aaudio.mmap_exclusive_policy]: [2] | |
[aaudio.mmap_policy]: [2] | |
[af.fast_track_multiplier]: [2] | |
[audio.deep_buffer.media]: [true] | |
[audio.offload.min.duration.secs]: [30] | |
[audio.sys.mute.latency.factor]: [2] | |
[audio.sys.noisy.broadcast.delay]: [500] | |
[audio.sys.offload.pstimeout.secs]: [3] |
This file contains hidden or 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
apiVersion: oadp.openshift.io/v1alpha1 | |
kind: Velero | |
metadata: | |
creationTimestamp: '2021-10-13T18:52:09Z' | |
generation: 1 | |
managedFields: | |
- apiVersion: oadp.openshift.io/v1alpha1 | |
fieldsType: FieldsV1 | |
fieldsV1: | |
'f:spec': |
OlderNewer