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

fix typos in k8s readme #166

Merged
merged 1 commit into from
Oct 10, 2024
Merged
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: 2 additions & 2 deletions examples/k8s/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ kubectl create namespace my-dotnet-ns
Next up we'll set our Elastic Cloud endpoint and key as k8s secrets.

```bash
kubectl create secret generic elastic-otel -my-dotnet-ns \
kubectl create secret generic elastic-otel -n my-dotnet-ns \
"--from-literal=endpoint=<cloud_endpoint>" \
"--from-literal=apiKey=Authorization=Bearer <api_key>"
```
Expand Down Expand Up @@ -48,7 +48,7 @@ apiVersion: v1
kind: Pod
metadata:
name: my-dotnet-application
namespace: my-dotnet-application
namespace: my-dotnet-ns
labels:
app: my-dotnet-application
spec:
Expand Down