- Be sure to change all the instances of
my
to something that is more meaningful to you- Like
gentle-bobs-dotnet-test
in themetadata.name
andspec.containers[0].name
fields
- Like
- Update the namespace
- Change the
metadata.namespace
field in theyaml
file - Use your target namespace in the
kubectl
commands below where-n
or--namespace
is used
- Change the
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.0 | |
info: | |
contact: | |
name: Confluent | |
url: 'https://confluent.io' | |
email: support@confluent.io | |
description: > | |
# Introduction |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"openapi": "3.0.0", | |
"info": { | |
"title": "Confluent Cloud APIs", | |
"version": "", | |
"contact": { | |
"name": "Confluent Cloud", | |
"url": "https://www.confluent.io/cloud-contact-us/", | |
"email": "support@confluent.io" | |
}, |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"openapi": "3.0.0", | |
"info": { | |
"title": "Confluent Cloud APIs", | |
"version": "", | |
"contact": { | |
"name": "Confluent Cloud", | |
"url": "https://www.confluent.io/cloud-contact-us/", | |
"email": "support@confluent.io" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a[href="/clusters/my-cluster-id/health-plus"] { | |
display: none !important; | |
pointer-events: none !important; | |
visibility: hidden !important; | |
} | |
a[title="Alerts"] { | |
display: none !important; | |
pointer-events: none !important; | |
visibility: hidden !important; |
title | type | slug | date | draft | tags | |
---|---|---|---|---|---|---|
Building kcat |
zettel |
20220914123407 |
2022-09-14 12:34:07 UTC |
false |
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: admin-user | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: ClusterRole | |
name: cluster-admin | |
subjects: | |
- kind: ServiceAccount |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This is a bit hardcoded, but it's meant as a proof of concept. | |
# used in kubectl get pods when targeting kafka broker pods | |
KARGS="-n kafka -l release=kafka,app=kafka" | |
# used in kubectl port-forward (setting the namespace, can be omitted) | |
KPORTFWD_ARGS="-n kafka" | |
# port on broker pods to forward | |
DPORT=9092 |