Skip to content

Commit

Permalink
Merge pull request #165 from Volt-MX-GO/zerlordMXGo-030624
Browse files Browse the repository at this point in the history
Correction
  • Loading branch information
zerlordsantiago authored and GitHub Enterprise committed Mar 6, 2024
2 parents 4eb13df + b4ed587 commit abb5969
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/topicguides/dominoserver.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ kubectl cp voltmxgo-drapi-848d9fc9f9-9vcgf:/local/notesdata/admin.id domino-id.i

Here, the `cp` command copies the file `/local/notesdata/admin.id` out of the container `voltmxgo-drapi-848d9fc9f9-9vcgf` to the file `domino-id.id` in the current working directory. The flag `-n mxgo` indicates that the Kubernetes namespace is `mxgo` and the flag `-c drapi` indicates using the drapi container within the Domino DRAPI pod.

Similiarly, you could copy the local file `foo.bar` into the container's `/tmp` directory like this:
Similarly, you could copy the local file `foo.bar` into the container's `/tmp` directory like this:

```{ .yaml .no-copy }
kubectl cp foo.bar voltmxgo-drapi-848d9fc9f9-9vcgf:/tmp/foo.bar -n mxgo -c drapi
Expand Down
2 changes: 1 addition & 1 deletion docs/topicguides/method.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For form-based data models, a number of methods including standard CRUD operatio
- POST :`Create` new Domino document containing the specified fields.
- GET :`Read` existing Domino documents, returning zero or more documents.
- PUT :`Update` an existing document, replacing all specified fields. If a field is omitted from the payload, it's removed from the document in Domino.
- DELET :`Delete` the specified document.
- DELETE :`Delete` the specified document.
- PATCH :`Update` an existing document, replacing only the specified fields. If a field is omitted from the payload, the field value in the Domino document isn't modified.
- createBinary - `Create` a new attachment file to attach to a specified Domino document.
- getBinary - `Read` an existing attachment from a specified Domino document.
Expand Down

0 comments on commit abb5969

Please sign in to comment.