Skip to content

Commit f7bab58

Browse files
authored
adding service account for mqtt-client (#105)
## 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: ```
1 parent 2fd1209 commit f7bab58

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

samples/quickstarts/mqtt-client.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Important: do not use in production environments
2+
# Create a service account
3+
apiVersion: v1
4+
kind: ServiceAccount
5+
metadata:
6+
name: mqtt-client
7+
namespace: azure-iot-operations
8+
---
29
# Creates a pod with mosquitto-clients and mqttui utilities in your cluster
310
apiVersion: v1
411
kind: Pod
@@ -39,4 +46,4 @@ spec:
3946
expirationSeconds: 86400
4047
- name: trust-bundle
4148
configMap:
42-
name: azure-iot-operations-aio-ca-trust-bundle # Default root CA cert
49+
name: azure-iot-operations-aio-ca-trust-bundle # Default root CA cert

0 commit comments

Comments
 (0)