-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1317 from porter-dev/main
Push latest changes to prod
- Loading branch information
Showing
67 changed files
with
4,190 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{{ if .Values.autoscaling.enabled }} | ||
kind: HTTPScaledObject | ||
apiVersion: http.keda.sh/v1alpha1 | ||
metadata: | ||
name: {{ .Release.Name }}-hf-llm | ||
spec: | ||
hosts: | ||
- {{ .Release.Name }}.porter.llm | ||
scaleTargetRef: | ||
deployment: {{ .Release.Name }}-hf-llm | ||
service: {{ .Release.Name }}-hf-llm | ||
port: 8000 | ||
replicas: | ||
min: {{ .Values.autoscaling.min }} | ||
max: {{ .Values.autoscaling.max }} | ||
scaledownPeriod: {{ .Values.autoscaling.scaledownPeriod }} | ||
scalingMetric: | ||
concurrency: | ||
targetValue: {{ .Values.autoscaling.targetConcurrency }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: {{ .Release.Name }}-model-pvc | ||
name: {{ .Release.Name }}-hf-llm | ||
spec: | ||
accessModes: | ||
- ReadWriteMany | ||
storageClassName: efs-{{ .Release.Name }} | ||
storageClassName: efs-{{ .Release.Name }}-hf-llm | ||
resources: | ||
requests: | ||
storage: 20Gi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ | ||
*.gotmpl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
apiVersion: v2 | ||
type: application | ||
name: keda-add-ons-http | ||
description: Event-based autoscaler for HTTP workloads on Kubernetes | ||
|
||
# Specify the Kubernetes version range that we support. | ||
# We allow pre-release versions for cloud-specific Kubernetes versions such as v1.21.5-gke.1302 or v1.18.9-eks-d1db3c | ||
kubeVersion: ">=v1.23.0-0" | ||
|
||
# This is the chart version. This version number should be incremented each time you make changes | ||
# to the chart and its templates, including the app version. This is incremented at chart release time and does not need | ||
# to be included in any PRs to main. | ||
# Versions are expected to follow Semantic Versioning (https://semver.org/) | ||
version: 0.8.0 | ||
|
||
# This is the version number of the application being deployed. This version number should be | ||
# incremented each time you make changes to the application. Versions are not expected to | ||
# follow Semantic Versioning. They should reflect the version the application is using. | ||
appVersion: 0.8.0 | ||
home: https://github.com/kedacore/http-add-on | ||
sources: | ||
- https://github.com/kedacore/http-add-on | ||
maintainers: | ||
- name: Ahmed ElSayed | ||
email: [email protected] | ||
- name: Jorge Turrado | ||
email: [email protected] | ||
- name: Tom Kerkhove | ||
email: [email protected] | ||
- name: Zbynek Roubalik | ||
email: [email protected] |
Oops, something went wrong.