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

add openai quota scheduler guides #2781

Merged
merged 18 commits into from
Oct 20, 2023
Merged
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
9 changes: 0 additions & 9 deletions blueprints/jsonnetfile.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
{
"version": 1,
"dependencies": [
{
"source": {
"git": {
"remote": "https://github.com/grafana/grafonnet-lib.git",
"subdir": "grafonnet"
}
},
"version": "master"
},
{
"source": {
"git": {
Expand Down
10 changes: 0 additions & 10 deletions blueprints/jsonnetfile.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,6 @@
"version": "a78ca15fbfece3110c4807d1f059132ece01d97b",
"sum": "qYLH56MqvmgxE4YMNeTbuJ1XSsCpl1sumHN5x8IQv2I="
},
{
"source": {
"git": {
"remote": "https://github.com/grafana/grafonnet-lib.git",
"subdir": "grafonnet"
}
},
"version": "a1d61cce1da59c71409b99b5c7568511fec661ea",
"sum": "342u++/7rViR/zj2jeJOjshzglkZ1SY+hFNuyCBFMdc="
},
{
"source": {
"git": {
Expand Down
6 changes: 6 additions & 0 deletions cmd/aperturectl/cmd/cloud/utils/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"crypto/x509"
"errors"
"fmt"
"net"
"os"
"path/filepath"

Expand Down Expand Up @@ -238,6 +239,11 @@ func (c *ControllerConn) prepareGRPCClient() (*grpc.ClientConn, error) {
cred := c.prepareCred()
addr = c.controllerAddr

// check whether the controller address contains a port, otherwise just use 443
if _, _, err := net.SplitHostPort(addr); err != nil {
addr = net.JoinHostPort(addr, "443")
}

if cred == nil {
certPool, err := x509.SystemCertPool()
if err != nil {
Expand Down
3 changes: 2 additions & 1 deletion docs/content/get-started/installation/configure-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ following as `~/.aperturectl/config`:

```toml
[controller]
url = "ORGANIZATION_NAME.app.fluxninja.com:443"
url = "ORGANIZATION_NAME.app.fluxninja.com"
project_name = "PROJECT_NAME"
api_key = "PERSONAL_API_KEY"
```

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading