Skip to content

Commit 8213a01

Browse files
committed
Updates
1 parent 6c93aca commit 8213a01

File tree

172 files changed

+8191
-183
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+8191
-183
lines changed

.env

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
SENTRIUS_VERSION=1.1.61
1+
SENTRIUS_VERSION=1.1.62
22
SENTRIUS_SSH_VERSION=1.1.16
33
SENTRIUS_KEYCLOAK_VERSION=1.1.18
44
SENTRIUS_AGENT_VERSION=1.1.16
55
SENTRIUS_AI_AGENT_VERSION=1.1.30
6-
LLMPROXY_VERSION=1.0.16
6+
LLMPROXY_VERSION=1.0.16
7+
LAUNCHER_VERSION=1.0.0

.gcp.env

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ SENTRIUS_SSH_VERSION=1.0.7
33
SENTRIUS_KEYCLOAK_VERSION=1.0.10
44
SENTRIUS_AGENT_VERSION=1.0.19
55
SENTRIUS_AI_AGENT_VERSION=1.0.0
6-
LLMPROXY_VERSION=1.0.0
6+
LLMPROXY_VERSION=1.0.0
7+
LAUNCHER_VERSION=1.0.0

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ dataplane/target/
4545
llm-proxy/target/**
4646
llm-proxy/target/
4747
llm-dataplane/target/**
48-
sentrius-llm-dataplane/target/**
49-
sentrius-llm-core/target/**
48+
llm-dataplane/target/**
49+
llm-core/target/**
5050
provenance-core/target/**
5151
provenance-ingestor/target/**
5252
llm-dataplane/target/
53-
sentrius-llm-dataplane/target/
54-
sentrius-llm-core/target/
53+
llm-dataplane/target/
54+
llm-core/target/
5555
node/*
5656
node_modules/*
5757
api/node_modules/*

.local.env

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
SENTRIUS_VERSION=1.1.81
2+
SENTRIUS_SSH_VERSION=1.1.17
3+
SENTRIUS_KEYCLOAK_VERSION=1.1.23
4+
SENTRIUS_AGENT_VERSION=1.1.17
5+
SENTRIUS_AI_AGENT_VERSION=1.1.32
6+
LLMPROXY_VERSION=1.0.17
7+
LAUNCHER_VERSION=1.0.22

.local.env.bak

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
SENTRIUS_VERSION=1.1.81
2+
SENTRIUS_SSH_VERSION=1.1.17
3+
SENTRIUS_KEYCLOAK_VERSION=1.1.22
4+
SENTRIUS_AGENT_VERSION=1.1.17
5+
SENTRIUS_AI_AGENT_VERSION=1.1.32
6+
LLMPROXY_VERSION=1.0.17
7+
LAUNCHER_VERSION=1.0.22

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,22 @@ above.
108108

109109
Build the images in your local Docker registry (note this builds all images, including core, api, and any other modules):
110110

111-
/build-images-local.sh --all --no-cache
111+
/build-images.sh --all --no-cache
112112

113113
Run the Helm deployment script to deploy Sentrius to your local Kubernetes cluster:
114114

115115
./ops-scripts/local/deploy-helm.sh
116116

117+
118+
119+
You may wish to forward ports so you can access the services locally. The following commands will forward the necessary ports for the core and api modules:
120+
kubectl port-forward -n dev service/sentrius-sentrius 8080:8080
121+
kubectl port-forward -n dev service/sentrius-keycloak 8081:8081
122+
123+
This will require that you either change the hostnames in the deploy-helm script or add entries to your /etc/hosts file to point to localhost for the services.
124+
127.0.0.1 sentrius-sentrius
125+
127.0.0.1 sentrius-keycloak
126+
117127
There is a GCP deployment that is hasn't been tested in some time. You can find it in the ops-scripts/gcp directory.
118128

119129
You will need to ensure you link to your GKE cluster and have the necessary permissions to deploy resources.

0 commit comments

Comments
 (0)