with only private endpoint
gcloud beta container clusters create "$CLUSTER_NAME" \
--region ${REGION} \
--network ${NETWORK} \
--subnetwork ${SUBNET} \
with only private endpoint
gcloud beta container clusters create "$CLUSTER_NAME" \
--region ${REGION} \
--network ${NETWORK} \
--subnetwork ${SUBNET} \
I'll be doing an Advanced Microservices workshop on Sept 5th & 6th This is the second course in the series. First one is the Kubernetes Intro to Advanced workshop
Here is a rough syllabus for the training (subject to change):
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: redis-master | |
labels: | |
app: redis | |
tier: backend | |
role: master | |
spec: | |
#type: LoadBalancer |
I will be doing a 2 part workshop on Container/Kubernetes. March 2nd and March 9th. Here is what I'm planning to cover. Time: 12:00pm to 3pm (3/2, and 3/9) Registration: www.npu.edu/news/containerMarch2019
I'm doing a Go training on January 10th 9:30am to 4pm. Here is roughly what I'm planning to cover.
This is a project driven hands on training, so we will be building a project to learn different Go concepts.
Project: a Key Value Database like etcd/consul and a CLI (using gRPC) to interact with it.
I'll be doing a Kubernetes Intro to Advanced workshop on Feb 20th 9am to 5pm and Feb 25th 9am to 5pm.
Here is a rough syllabus for the workshop (subject to change):
{ | |
"ports" : { | |
"of:0000000000000021/1" : { | |
"interfaces" : [ | |
{ | |
"ips" : [ "10.2.20.1/16" ], | |
"vlan" : "-1" | |
} | |
] | |
}, |
onos: | |
image: onosproject/onos | |
container_name: onos | |
environment: | |
- "ONOS_APPS=drivers,openflow,segmentrouting" | |
labels: | |
- "lab.cord.component=Controller" | |
restart: always | |
ports: | |
- "8181:8181" |
#!/usr/bin/env bash | |
image="gunjan5/onos-sr" | |
port_str="" | |
for p in 8181 8101 9876 6653 6633; do | |
port_str="$port_str -p $p:$p/tcp" | |
done | |
echo "Starting docker with publish port list at $port_str" | |
docker run -itd $port_str $image /bin/bash |
{ | |
"ports" : { | |
"of:0000000badbeef21/7" : { | |
"interfaces" : [ | |
{ | |
"ips" : [ "1192.168.42.22/16" ], | |
"vlan" : "-1" | |
} | |
] | |
}, |