Skip to content

Commit

Permalink
fix-md-style: inline code (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
emmeowzing authored May 29, 2024
1 parent d9f676d commit a903c48
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helm/operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ helm upgrade --install password-store-operator helm/operator/ --namespace passwo
| `operator.initial_delay` | The initial delay in seconds before the first check for changes in the secrets in the pass store. | `3` |
| `operator.priority` | The priority of the operator. The higher the number, the higher the priority. Only useful if multiple operators are running. | `100` |
| `operator.pass.binary` | The path to the pass binary. | `""` |
| `operator.pass.storeSubPath` | A subpath within '~/.password-store'. | `""` |
| `operator.pass.storeSubPath` | A subpath within `~/.password-store`. | `""` |
| `operator.log.level` | The log level for the operator. Options are: debug, info, warn, error. | `debug` |
| `operator.ssh.createSecret` | If true, the secret is created. Otherwise, the secret is only referenced. This allows for users to provide their own secret via SealedSecrets or some other operator. | `false` |
| `operator.ssh.name` | Name of the secret. If createSecret is false, this is used to reference an existing, user-provided secret. | `private-ssh-key` |
Expand Down
2 changes: 1 addition & 1 deletion helm/operator/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
},
"storeSubPath": {
"type": "string",
"description": "A subpath within '~/.password-store'.",
"description": "A subpath within `~/.password-store`.",
"default": "\"\""
}
}
Expand Down
2 changes: 1 addition & 1 deletion helm/operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ operator:
## @param operator.pass.binary [string] The path to the pass binary.
binary: /usr/bin/pass

## @param operator.pass.storeSubPath [string] A subpath within '~/.password-store'.
## @param operator.pass.storeSubPath [string] A subpath within `~/.password-store`.
storeSubPath: ''

log:
Expand Down

0 comments on commit a903c48

Please sign in to comment.