Skip to content
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
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ temp/ # a temp folder used during bootstrap that is gitignored

You're free to extend this as you'd like, although if you use the plural marketplace that structure will be expected. You can also deploy services w/ manifests in other repos, this is meant to serve as a base to define the core infrastructure and get you started in a sane way.

For cloud installs (`plural up --cloud`), bootstrap also templates a default `AgentRuntime` at `bootstrap/agents/runtimes/default.yaml`. It is configured with `aiProxy: true` so agent runs use the AI proxy path without requiring per-runtime API key wiring.

## Using the Plural Catalog

Many of the common operations you'll need to do to manage your kubernetes infrastructure have all been operationalized as part of the service catalog that's synced via `bootstrap/catalogs.yaml`. A decent example here would be setting up a new kubernetes fleet, which you can do with the following:
Expand Down Expand Up @@ -124,4 +126,4 @@ spec:
name: externaldns
```

To see a number of working examples, look at your `bootstrap/o11y` or `bootstrap/network` folders, where we should install a few global services for common runtime-level kubernetes concerns. If you want to reverse our default setup, simply delete them from the repo and push.
To see a number of working examples, look at your `bootstrap/o11y` or `bootstrap/network` folders, where we should install a few global services for common runtime-level kubernetes concerns. If you want to reverse our default setup, simply delete them from the repo and push.
15 changes: 15 additions & 0 deletions setup/agents/runtimes/default.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[[ if .Cloud ]]
apiVersion: deployments.plural.sh/v1alpha1
kind: AgentRuntime
metadata:
name: opencode
spec:
targetNamespace: agents
type: OPENCODE
aiProxy: true
default: true
dind: true
browser:
enabled: true
browser: chrome
[[ end ]]