Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 3686f29

Browse files
authored
📝 Add examples to rig-ops CLI page (#1183)
1 parent 703796a commit 3686f29

File tree

2 files changed

+101
-1
lines changed

2 files changed

+101
-1
lines changed

cmd/rig-ops/cmd/plugins/setup.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func Setup(parent *cobra.Command, s *cli.SetupContext) {
4747
pluginsCmd := &cobra.Command{
4848
Use: "plugins",
4949
Aliases: []string{"mods"},
50-
Short: "Migrate you kubernetes deployments to Rig Capsules",
50+
Short: "Tooling for working with plugins in Rig",
5151
PersistentPreRunE: s.MakeInvokePreRunE(initCmd),
5252
}
5353

docs/docs/operator-manual/cli.mdx

+100
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,103 @@ page](https://github.com/rigdev/rig/releases/latest) to find yours.
2323
## From source
2424
Installation from source requires the go toolchain to be installed.
2525
<CodeBlock language="bash">go install github.com/rigdev/rig/cmd/rig-ops@v{RIG_VERSION}</CodeBlock>
26+
27+
## Usage
28+
The `rig-ops` CLI provides a couple of operational tools useful for an operator of Rig.
29+
30+
### Plugins
31+
```
32+
rig-ops plugins --help
33+
34+
Tooling for working with plugins in Rig
35+
36+
Usage:
37+
rig-ops plugins [command]
38+
39+
Aliases:
40+
plugins, mods
41+
42+
Available Commands:
43+
check Check which plugins will be run on which capsules
44+
dry-run runs a dry-run of the operator on the given namespace and capsule (or provided capsule spec)
45+
get Gets the configuration for a single step given by index. If no index is given, it will prompt you to choose a step.
46+
list Lists the set of plugins available in the operator
47+
list-steps Lists the plugin steps currently configured in the operator
48+
```
49+
50+
#### Examples:
51+
52+
**check**
53+
```
54+
% rig-ops plugins check
55+
Namespace Capsule StepIndex
56+
myproject mycapsule 0
57+
myproject mycapsule2 0
58+
myproject-staging mycapsule 0
59+
myproject-staging mycapsule 1
60+
```
61+
62+
**dry-run**
63+
```
64+
% rig-ops dry-run myproject mycapsule --operator-config config.yaml --output-path output.yaml
65+
```
66+
67+
**get**
68+
```
69+
% rig-ops plugins get 0
70+
capsules: null
71+
namespaces: null
72+
plugins:
73+
- config:
74+
annotations:
75+
key: value
76+
name: rigdev.annotations
77+
```
78+
79+
**list**
80+
```
81+
% rig-ops plugins list
82+
Type Name
83+
Builtin rigdev.annotations
84+
Builtin rigdev.cron_jobs
85+
Builtin rigdev.datadog
86+
Builtin rigdev.deployment
87+
Builtin rigdev.env_mapping
88+
Builtin rigdev.google_cloud_sql_auth_proxy
89+
Builtin rigdev.ingress_routes
90+
Builtin rigdev.init_container
91+
Builtin rigdev.object_create
92+
Builtin rigdev.object_template
93+
Builtin rigdev.placement
94+
Builtin rigdev.service_account
95+
Builtin rigdev.service_monitor
96+
Builtin rigdev.sidecar
97+
Builtin rigdev.vpa
98+
```
99+
100+
### Migrate
101+
```
102+
% rig-ops migrate --help
103+
Migrate your kubernetes deployments to Rig Capsules
104+
105+
Usage:
106+
rig-ops migrate [flags]
107+
108+
Flags:
109+
-A, --annotation key=value annotations to add to the Capsule of the format key=value. Can for example be used to target migration with a specific plugin (default [])
110+
-a, --apply Apply the capsule to the rig platform
111+
--deployment string The deployment to migrate. If not set, a list of deployments will be prompted for.
112+
-e, --environment string The environment to migrate to
113+
--export string Export the Capsule to the given file path
114+
--helm-dir string Path to a Helm chart directory. If set, the Helm chart will be rendered, and the resulting k8s resources will form the base of the migration
115+
-h, --help help for migrate
116+
--keep-env-config-maps Keep envFrom to ConfigMaps after migration. By default, ConfigMaps are read and added to the Capsule. Changing this behavior is useful if an external tool is generating the ConfigMaps.
117+
--name-origin service,deployment,input From where to inherit the name of the capsule. One of service,deployment,input. Default is service, if one exists, otherwise deployment.
118+
-p, --project string The project to migrate to
119+
--values-file strings Paths to additional values files to use for the helm chart.Each path is separated by a comma. The values are merged in the order they are provided
120+
```
121+
122+
**Example**
123+
```
124+
rig-ops migrate -p myproject -e prod --deployment mydeployment --name-origin input --export output.yaml
125+
```

0 commit comments

Comments
 (0)