-
dev module
-
previous button
alt + cmd + v
-
sync button
-
This file contains 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
# basic information for generating and executing this definition | |
SenzaInfo: | |
StackName: hello-world | |
Parameters: | |
- ImageVersion: | |
Description: "Docker image version of hello-world." | |
# a list of senza components to apply to the definition | |
SenzaComponents: | |
# this basic configuration is required for the other components | |
- Configuration: |
This file contains 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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "Stmt1441892073456", | |
"Effect": "Allow", | |
"Action": [ | |
"kms:Decrypt" | |
], | |
"Resource": [ |
This file contains 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
# https://github.com/lotharschulz/akkahttp-playground/releases/tag/0.0.6-minikube-lb-ing-presentation-leipzig | |
# prerequsites: scala, sbt, docker, minikube, kubectl, local registry, project's docker images in local registry | |
kubectl create -f minikube-deployment-config.yaml | |
kubectl expose deployment akkahttpplayground-deployment --type="LoadBalancer" --port=8181 -target-port=8181 | |
minikube service akkahttpplayground-deployment # opens browser window | |
minikube addons enable ingress | |
kubectl create -f minikube-ingress.yaml | |
echo "$(minikube ip) myminikube.info" | sudo tee -a /etc/hosts | |
# check the service |
This file contains 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
name: Lothar Schulz | |
mail: [email protected] | |
work: Director Engineering at BuildingMinds | |
site: https://www.lotharschulz.info | |
code: https://github.com/lotharschulz && https://codeberg.org/lotharschulz | |
linkedin: https://www.linkedin.com/in/lotharschulz/ | |
threads: https://www.threads.net/@lothar___schulz | |
xing: https://www.xing.com/profile/Lothar_Schulz | |
slide decks: https://speakerdeck.com/lothar/ && https://www.lotharschulz.info/talks/ | |
mastodon: [email protected] |
This file contains 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
# http://www.lotharschulz.info/2018/05/06/kubeflow-jupyter-notebook-on-kubernetes | |
# Create a namespace for kubeflow deployment | |
NAMESPACE=kubeflow | |
# start kubernetes cluster using minikube | |
minikube start | |
# create the kubeflow namespace | |
kubectl create namespace ${NAMESPACE} | |
# ksonnet package versions | |
VERSION=v0.1.3 |
This file contains 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
fun main(args: Array<String>) { | |
val someText = "ABC1234567890" | |
for (i in (0 .. (someText.length-1))){ | |
println(" number[$i]: ${someText[i]}") | |
println("(number[$i] is Char): ${(someText[i] is Char)}") | |
/* toInt return ascii dev code of a Character, | |
_not_ the Character as Int in case of numbers */ | |
println(" number[$i].toInt(): ${someText[i].toInt()}") | |
println(" number[$i].toString().toIntOrNull(): " + | |
"${someText[i].toString().toIntOrNull()}") |
This file contains 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
╔═════════════════════════════╦════════════════════════════╦═════════════════════════════════════════╦════════════════════════╦════════════╦═══════════════════════╦═══════════════════════════════════╦═════════════════════════════════════╗ | |
║ base image ║ Docker build category ║ command ║ image build (circleCI) ║ image size ║ image size compressed ║ push to Dockerhub (from circleCI) ║ pull from Dockerhub (from circleCI) ║ | |
╠═════════════════════════════╬════════════════════════════╬═════════════════════════════════════════╬════════════════════════╬════════════╬═══════════════════════╬═══════════════════════════════════╬═════════════════════════════════════╣ | |
║ golang:1.11 ║ default ║ docker build ║ 3.025s ║ 783 MB ║ 299 MB ║ 4.618s ║ 21.271s ║ | |
║ golang:1.11 ║ default ║ docker |
This file contains 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
╔════════╦══════════════════════════════╦═════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗ | |
║ CVE ║ Found in ║ |
Publishing artifacts with AWS Codeartifact and GitHub Packages
- Blog Post: Publishing artifacts with AWS Codeartifact and GitHub Packages
- GitHub repository with full code details: reach-now/codeartifact-packages-publishing
aws cli
OlderNewer