k8s/game-advisor.yaml (42 lines of code) (raw):

# Copyright 2024 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http:#www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. apiVersion: apps/v1 kind: Deployment metadata: name: game-advisor spec: selector: matchLabels: app: game-advisor template: metadata: labels: app: game-advisor spec: serviceAccount: genkit containers: - name: game-advisor image: us-docker.pkg.dev/backlogged-ai/llm/game-advisor:v3.0.8 resources: limits: memory: "4Gi" cpu: "2" env: - name: OLLAMA_ADDRESS value: "http://ollama-service:8080" ports: - containerPort: 3400 name: http protocol: TCP --- apiVersion: v1 kind: Service metadata: name: game-advisor spec: selector: app: game-advisor type: LoadBalancer ports: - port: 8080 targetPort: 3400 protocol: TCP name: http