Skip to content

Commit

Permalink
Merge pull request #517 from solliancenet/mg-mgmt-helm-chart-fixes
Browse files Browse the repository at this point in the history
Management helm chart fixes
  • Loading branch information
ciprianjichici authored Jan 29, 2024
2 parents 2843550 + cedc619 commit 424d65c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion deploy/helm/chat-ui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/management-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/management-ui/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -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 -}}
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/management-ui/values.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/dotnet/SemanticKernelAPI/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 424d65c

Please sign in to comment.