Skip to content

Instantly share code, notes, and snippets.

View ThomasVitale's full-sized avatar
🍃
Cloud Native Spring in Action

Thomas Vitale ThomasVitale

🍃
Cloud Native Spring in Action
View GitHub Profile
@ThomasVitale
ThomasVitale / Application.java
Last active October 31, 2024 10:37
Java 23 + Spring AI Ollama + JBang
//usr/bin/env jbang "$0" "$@" ; exit $?
//JAVA 23
//PREVIEW
//REPOS mavencentral,https://repo.spring.io/milestone
//DEPS org.springframework.boot:spring-boot-starter:3.3.5
//DEPS org.springframework.ai:spring-ai-ollama-spring-boot-starter:1.0.0-M3
//JAVA_OPTIONS -Dspring.main.web-application-type=none
//JAVA_OPTIONS -Dspring.ai.ollama.init.pull-model-strategy=always
//JAVA_OPTIONS -Dspring.ai.ollama.chat.options.model=llama3.2:1b
private RestClient buildRestClient(OpenAiClientConfig clientConfig, RestClient.Builder restClientBuilder) {
var settings = new ClientHttpRequestFactorySettings(
clientConfig.connectTimeout(), clientConfig.readTimeout(), SslBundle.of(null));
var requestFactory = ClientHttpRequestFactories.get(settings);
Consumer<HttpHeaders> defaultHeaders = headers -> {
headers.setContentType(MediaType.APPLICATION_JSON);
if (StringUtils.hasText(clientConfig.apiKey())) {
headers.setBearerAuth(clientConfig.apiKey());
@ThomasVitale
ThomasVitale / kpack-overlay.yml
Created September 13, 2023 10:49
Kpack with custom CA
#@ load("@ytt:data", "data")
#@ load("@ytt:overlay", "overlay")
#@ load("/config.star", "get_ca_certificates")
#@ if data.values.ca_cert_data != "":
#@yaml/text-templated-strings
---
apiVersion: v1
kind: Secret
@ThomasVitale
ThomasVitale / schema.yml
Last active September 4, 2023 17:19
ytt yaml fragment snippet
#@data/values-schema
---
service:
enabled: true
@ThomasVitale
ThomasVitale / deployment.yml
Last active June 20, 2023 19:50
Tekton kbld issue
apiVersion: apps/v1
kind: Deployment
metadata:
name: tekton-pipelines-controller
namespace: tekton-pipelines
spec:
selector:
matchLabels:
app.kubernetes.io/name: controller
app.kubernetes.io/component: controller
# Imgpkg => https://carvel.dev/imgpkg
imgpkg copy \
-i docker.io/thomasvitale/book-service:1.0 \
--to-repo ghcr.io/thomasvitale/book-service \
--cosign-signatures
# Skopeo => https://github.com/containers/skopeo
skopeo copy \
docker://docker.io/thomasvitale/book-service:1.0 \
docker://quay.io/thomasvitale/book-service:1.0
@ThomasVitale
ThomasVitale / custom-values.yml
Last active March 2, 2023 20:12
Contour ConfigMap Example with Carvel ytt
#@data/values
---
config-contour:
timeouts:
connection-idle-timeout: 30s
stream-idle-timeout: 2m
disablePermitInsecure: true
@ThomasVitale
ThomasVitale / custom-values.yml
Last active March 2, 2023 16:45
Carvel ytt - Example with empty ConfigMap
#@data/values
---
config-features:
secure-pod-defaults: "enabled"
@ThomasVitale
ThomasVitale / ThreadTest.java
Last active March 1, 2020 21:16
Multitenancy Stuff
package com.thomasvitale.application;
import com.thomasvitale.application.multitenancy.TenantContext;
import org.junit.jupiter.api.Test;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class ThreadTest {
@ThomasVitale
ThomasVitale / Application.java
Last active March 27, 2025 03:06
Spring Data JPA - Basic Configuration
package com.thomasvitale.jpa.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);