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

Minor doc fixes #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions docs/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ You can use the following procedure to send and receive messages within a Kubern
- name: kafka-test
image: solsson/kafkacat
# Just spin & wait forever
command: [ "/bin/bash", "-c", "--" ]
command: [ "/bin/sh", "-c", "--" ]
args: [ "while true; do sleep 3000; done;" ]
volumeMounts:
- name: sslcerts
mountPath: "/ssl/certs"
volumes:
- name: sslcerts
secret:
secretName: kafka-operator-server-cert
secretName: kafka-operator-serving-cert
EOF
```

Expand Down Expand Up @@ -156,9 +156,9 @@ You can use the following procedure to send and receive messages outside a Kuber
1. Extract secrets from the given Kubernetes Secret:

```bash
kubectl get secrets -n kafka kafka-operator-server-cert -o jsonpath="{['data']['\tls.crt']}" | base64 -D > client.crt.pem
kubectl get secrets -n kafka kafka-operator-server-cert -o jsonpath="{['data']['\tls.key']}" | base64 -D > client.key.pem
kubectl get secrets -n kafka kafka-operator-server-cert -o jsonpath="{['data']['\ca.crt']}" | base64 -D > ca.crt.pem
kubectl get secrets -n kafka kafka-operator-serving-cert -o jsonpath="{['data']['\tls.crt']}" | base64 -D > client.crt.pem
kubectl get secrets -n kafka kafka-operator-serving-cert -o jsonpath="{['data']['\tls.key']}" | base64 -D > client.key.pem
kubectl get secrets -n kafka kafka-operator-serving-cert -o jsonpath="{['data']['\ca.crt']}" | base64 -D > ca.crt.pem
```

1. Produce some test messages.
Expand Down