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

Update resources-provisioners.md for score-k8s: service-port and mssql #137

Merged
merged 1 commit into from
Oct 29, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ aliases:

`score-k8s` comes with out-of-the-box support for:

| Type | Class | Params | Output |
| ---------- | --------- | ---------------------- | --------------------------------------------------------------- |
| `ampq` | `default` | (none) | `host`, `port`, `username`, `password`, `vhost` |
| `dns` | `default` | (none) | `host` |
| `mongodb` | `default` | (none) | `host`, `port`, `username`, `password`, `name`, `connection` |
| `mysql` | `default` | (none) | `host`, `port`, `name` (aka `database`), `username`, `password` |
| `postgres` | `default` | (none) | `host`, `port`, `name` (aka `database`), `username`, `password` |
| `redis` | `default` | (none) | `host`, `port`, `username`, `password` |
| `route` | `default` | `host`, `path`, `port` | |
| `volume` | `default` | (none) | `source` |
| Type | Class | Params | Output |
| -------------- | --------- | ---------------------- | ------------------------------------------------------------------ |
| `ampq` | `default` | (none) | `host`, `port`, `username`, `password`, `vhost` |
| `dns` | `default` | (none) | `host` |
| `mongodb` | `default` | (none) | `host`, `port`, `username`, `password`, `name`, `connection` |
| `mssql` | `default` | (none) | `server`, `port`, `username`, `password`, `database`, `connection` |
| `mysql` | `default` | (none) | `host`, `port`, `name` (aka `database`), `username`, `password` |
| `postgres` | `default` | (none) | `host`, `port`, `name` (aka `database`), `username`, `password` |
| `redis` | `default` | (none) | `host`, `port`, `username`, `password` |
| `route` | `default` | `host`, `path`, `port` | |
| `service-port` | `default` | `workload`, `port` | `hostname`, `port` |
| `volume` | `default` | (none) | `source` |

These can be found in the default provisioners file. You are encouraged to write your own provisioners and add them to the `.score-k8s` directory (with the `.provisioners.yaml` extension) or contribute them upstream to the [default.provisioners.yaml](https://github.com/score-spec/score-k8s/blob/main/internal/provisioners/default/zz-default.provisioners.yaml) file.

Expand Down