Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[castai-cloud-proxy] remove unused api URL #552

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/castai-cloud-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: castai-cloud-proxy
description: CAST AI cloud-proxy chart
type: application
version: 0.3.2
version: 0.3.3
appVersion: "v0.0.12"
3 changes: 1 addition & 2 deletions charts/castai-cloud-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ CAST AI cloud-proxy chart
| affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution[0].podAffinityTerm.labelSelector.matchExpressions[0].values[0] | string | `"castai-cloud-proxy"` | |
| affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution[0].podAffinityTerm.topologyKey | string | `"kubernetes.io/hostname"` | |
| affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution[0].weight | int | `100` | |
| castai | object | `{"apiKey":"","apiKeySecretRef":"","apiURL":"https://api.cast.ai","clusterID":"","grpcURL":"api-grpc.cast.ai:443","useCompression":true}` | CAST AI specific settings |
| castai | object | `{"apiKey":"","apiKeySecretRef":"","clusterID":"","grpcURL":"api-grpc.cast.ai:443","useCompression":true}` | CAST AI specific settings |
| castai.apiKey | string | `""` | The CAST AI API key. Either this or apiKeySecretRef must be provided. |
| castai.apiKeySecretRef | string | `""` | Kubernetes Secret reference for the CAST AI API key. Either this or apiKey must be provided. |
| castai.apiURL | string | `"https://api.cast.ai"` | The CAST AI API URL. |
| castai.clusterID | string | `""` | The CAST AI cluster ID. |
| castai.grpcURL | string | `"api-grpc.cast.ai:443"` | The CAST AI gRPC URL. |
| castai.useCompression | bool | `true` | Use compression for gRPC communication. |
Expand Down
1 change: 0 additions & 1 deletion charts/castai-cloud-proxy/ci/test-values.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
castai:
apiURL: "https://api.cast.ai"
grpcURL: "grpc.cast.ai:443"
apiKey: "gibberish"
clusterID: "a24cd53c-0d56-4422-88e6-f82f78ef8f20"
Expand Down
2 changes: 0 additions & 2 deletions charts/castai-cloud-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- name: CAST_URL
value: {{ required "castai.apiURL must be provided" .Values.castai.apiURL | quote }}
- name: CAST_GRPC_URL
value: {{ required "castai.grpcURL must be provided" .Values.castai.grpcURL | quote }}
- name: CLUSTER_ID
Expand Down
2 changes: 0 additions & 2 deletions charts/castai-cloud-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ gke:

# -- CAST AI specific settings
castai:
# -- The CAST AI API URL.
apiURL: "https://api.cast.ai"
# -- The CAST AI gRPC URL.
grpcURL: "api-grpc.cast.ai:443"
# -- Use compression for gRPC communication.
Expand Down
Loading