cat <<EOF | kubectl apply -f -
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-server
spec:
selector:
matchLabels:
run: hello-server
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
| mkdir tmp | |
| cd tmp | |
| curl -sL https://start.spring.io/starter.zip -d bootVersion=2.4.5 -d dependencies=web -o demo.zip; unzip demo.zip; rm demo.zip | |
| echo "hello, world" > src/main/resources/static/index.html | |
| ./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=gcr.io/jw-demo/springboot-demo -Dspring-boot.build-image.builder=gcr.io/buildpacks/builder:v1 | |
| docker push gcr.io/jw-demo/springboot-demo |
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
| sealed class Result<out V, out E> { | |
| data class Failure<out FE>(val e: FE): Result<Nothing, FE>() | |
| data class Success<out SV>(val v: SV): Result<SV, Nothing>() | |
| companion object { | |
| fun <PV> succeed(v: PV): Result<PV, Nothing> = Success(v) | |
| fun <PE> fail(e: PE): Result<Nothing, PE> = Failure(e) | |
| } | |
| inline fun <MR> map(f: (V) -> MR): Result<MR, E> { |
- Get the latest release: https://releases.nixos.org/?prefix=nix/
- Extract the release
- Setup
/nixsudo mkdir /nix sudo chown $USER /nix - Run installer
NIX_INSTALLER_NO_MODIFY_PROFILE=true ./install
./gradlew test
> Task :pkl-cli:test
CliDownloadPackageCommandTest > download multiple failing packages(Path) FAILED
org.opentest4j.AssertionFailedError:
Expecting message to be:
"Failed to download some packages.
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
| # Spring AI Workshop Resources | |
| ## Local Auth with Bearer Token | |
| 1. [Create a Bedrock Bearer token](https://us-east-1.console.aws.amazon.com/bedrock/home?region=us-east-1#/api-keys/long-term/create) | |
| 2. Set the env var: `export AWS_BEARER_TOKEN_BEDROCK=YOUR_TOKEN` | |
| ## Workshop | |
| https://catalog.workshops.aws/java-spring-ai-agents |
OlderNewer