Skip to content

Commit

Permalink
adding service account for mqtt-client (#105)
Browse files Browse the repository at this point in the history
## Purpose
<!-- Describe the intention of the changes being proposed. What problem
does it solve or functionality does it add? -->
* adding service account for mqtt-client

## Does this introduce a breaking change?
<!-- Mark one with an "x". -->
```
[ ] Yes
[x] No
```

## Pull Request Type
What kind of change does this Pull Request introduce?

<!-- Please check the one that applies to this PR using "x". -->
```
[x] Bugfix
[ ] Feature
[ ] Code style update (formatting, local variables)
[ ] Refactoring (no functional changes, no api changes)
[ ] Documentation content changes
[ ] Other... Please describe:
```
  • Loading branch information
bindsi authored Nov 18, 2024
1 parent 2fd1209 commit f7bab58
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion samples/quickstarts/mqtt-client.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Important: do not use in production environments
# Create a service account
apiVersion: v1
kind: ServiceAccount
metadata:
name: mqtt-client
namespace: azure-iot-operations
---
# Creates a pod with mosquitto-clients and mqttui utilities in your cluster
apiVersion: v1
kind: Pod
Expand Down Expand Up @@ -39,4 +46,4 @@ spec:
expirationSeconds: 86400
- name: trust-bundle
configMap:
name: azure-iot-operations-aio-ca-trust-bundle # Default root CA cert
name: azure-iot-operations-aio-ca-trust-bundle # Default root CA cert

0 comments on commit f7bab58

Please sign in to comment.