Which component are you using?:
cluster-autoscaler
What version of the component are you using?:
Component version: 1.21.2
What k8s version are you using (kubectl version)?:
| // SPDX-License-Identifier: GPL-2.0 | |
| /dts-v1/; | |
| #include "bcm2711.dtsi" | |
| #include "bcm2711-rpi.dtsi" | |
| //#include "bcm283x-rpi-usb-peripheral.dtsi" | |
| / { | |
| compatible = "raspberrypi,4-compute-module-ha-yellow", "raspberrypi,4-compute-module", "brcm,bcm2711"; | |
| model = "Raspberry Pi Compute Module 4 on Home Assistant Yellow"; |
| package main | |
| import ( | |
| "bytes" | |
| "context" | |
| "fmt" | |
| "os/exec" | |
| "sync" | |
| "time" | |
| ) |
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "sync" | |
| "time" | |
| ) | |
| func fiz(ctx context.Context) { |
| traces: | |
| configs: | |
| - automatic_logging: | |
| backend: stdout | |
| loki_name: default | |
| spans: true | |
| batch: | |
| send_batch_size: 1000 | |
| timeout: 5s | |
| name: default |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: EnvoyFilter | |
| metadata: | |
| name: matthias-tmp-access-logging | |
| namespace: my-service-123 | |
| annotations: | |
| owner: matthias | |
| spec: | |
| configPatches: | |
| - applyTo: NETWORK_FILTER |
| #cloud-config | |
| output: { all: "| tee -a /var/log/cloud-init-output.log" } | |
| package_update: true | |
| package_upgrade: true | |
| packages: | |
| - apt-transport-https | |
| - ca-certificates | |
| - curl | |
| - gnupg |
Which component are you using?:
cluster-autoscaler
What version of the component are you using?:
Component version: 1.21.2
What k8s version are you using (kubectl version)?:
I hereby claim:
To claim this, I am signing this object:
| import xml.etree.ElementTree as Xet | |
| import pandas as pd | |
| cols = [ | |
| "Praeposition", | |
| "Kasus", | |
| "Genus", | |
| "Sonstiges", | |
| "Zitat", | |
| "Quelle", |
| from flask import Flask | |
| from flask_mqtt import Mqtt | |
| def create_app(): | |
| app = Flask(__name__) | |
| app.config['MQTT_BROKER_URL'] = 'mosquito.lanarama.local' # use the free broker from HIVEMQ | |
| app.config['MQTT_BROKER_PORT'] = 1883 # default port for non-tls connection | |
| app.config['MQTT_USERNAME'] = '' # set the username here if you need authentication for the broker | |
| app.config['MQTT_PASSWORD'] = '' # set the password here if the broker demands authentication | |
| app.config['MQTT_KEEPALIVE'] = 5 # set the time interval for sending a ping to the broker to 5 seconds |