diff --git a/deploy/helm/chat-ui/values.yaml b/deploy/helm/chat-ui/values.yaml index 5c29b2034d..c434104bd8 100644 --- a/deploy/helm/chat-ui/values.yaml +++ b/deploy/helm/chat-ui/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 serviceAccountName: chat-ui image: - repository: ghcr.io/solliancenet/foundationallm + repository: ghcr.io/solliancenet/foundationallm/chat-ui pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. tag: latest diff --git a/deploy/helm/management-api/values.yaml b/deploy/helm/management-api/values.yaml index 285e1f5d8a..3e44ccb70c 100644 --- a/deploy/helm/management-api/values.yaml +++ b/deploy/helm/management-api/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 serviceAccountName: management-api image: - repository: ghcr.io/solliancenet/foundationallm/managemente-api + repository: ghcr.io/solliancenet/foundationallm/management-api pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. tag: latest diff --git a/deploy/helm/management-ui/templates/_helpers.tpl b/deploy/helm/management-ui/templates/_helpers.tpl index 1cf0eeddc4..45f6b97f22 100644 --- a/deploy/helm/management-ui/templates/_helpers.tpl +++ b/deploy/helm/management-ui/templates/_helpers.tpl @@ -11,7 +11,7 @@ Create a default fully qualified app name. We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). If release name contains chart name it will be used as a full name. */}} -{{- define "management.fullname" -}} +{{- define "management-ui.fullname" -}} {{- if .Values.fullnameOverride -}} {{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} {{- else -}} diff --git a/deploy/helm/management-ui/values.yaml b/deploy/helm/management-ui/values.yaml index 6a6f9cc884..10fac95722 100644 --- a/deploy/helm/management-ui/values.yaml +++ b/deploy/helm/management-ui/values.yaml @@ -1,9 +1,9 @@ -# Default values for chat-ui. +# Default values for management-ui. # This is a YAML-formatted file. # Declare variables to be passed into your templates. replicaCount: 1 -serviceAccountName: chat-ui +serviceAccountName: management-ui image: repository: ghcr.io/solliancenet/foundationallm/management-ui pullPolicy: Always diff --git a/src/dotnet/SemanticKernelAPI/Dockerfile b/src/dotnet/SemanticKernelAPI/Dockerfile index fddeb7be16..ca603f9e66 100644 --- a/src/dotnet/SemanticKernelAPI/Dockerfile +++ b/src/dotnet/SemanticKernelAPI/Dockerfile @@ -14,15 +14,15 @@ COPY . . RUN dotnet restore "dotnet/Common/Common.csproj" RUN dotnet build "dotnet/Common/Common.csproj" -c Release -o /app/build -RUN dotnet restore "dotnet/SemanticKernel/SemanticKernel.csproj" -RUN dotnet build "dotnet/SemanticKernel/SemanticKernel.csproj" -c Release -o /app/build +RUN dotnet restore "dotnet/SemanticKernel-obsolete/SemanticKernel-obsolete.csproj" +RUN dotnet build "dotnet/SemanticKernel-obsolete/SemanticKernel-obsolete.csproj" -c Release -o /app/build RUN dotnet restore "dotnet/SemanticKernelAPI/SemanticKernelAPI.csproj" RUN dotnet build "dotnet/SemanticKernelAPI/SemanticKernelAPI.csproj" -c Release -o /app/build FROM build AS publish RUN dotnet publish "dotnet/Common/Common.csproj" -c Release -o /app/publish /p:UseAppHost=false -RUN dotnet publish "dotnet/SemanticKernel/SemanticKernel.csproj" -c Release -o /app/publish /p:UseAppHost=false +RUN dotnet publish "dotnet/SemanticKernel-obsolete/SemanticKernel-obsolete.csproj" -c Release -o /app/publish /p:UseAppHost=false RUN dotnet publish "dotnet/SemanticKernelAPI/SemanticKernelAPI.csproj" -c Release -o /app/publish /p:UseAppHost=false FROM base AS final