Aleksandr Chebotov
Aleksandr Chebotov
**Describe the solution you'd like** zstd 1.4.9 provides significant performance improvements - https://www.phoronix.com/scan.php?page=news_item&px=Zstd-1.4.9-Released **Distribution (please complete the following information):** - OS: Ubuntu - Architecture: amd64 - Repository: https://launchpad.net/~ondrej/+archive/ubuntu/php **Package(s) (please...
**Description:** We got an issue from customers - https://github.com/actions/runner-images/issues/6108 that `xcversion` sometimes doesn't list all installed Xcode. **Expected behavior:** ``` 13.1 (/Applications/Xcode_13.1.app) 13.2.1 (/Applications/Xcode_13.2.1.app) 13.3.1 (/Applications/Xcode_13.3.1.app) 13.4 (/Applications/Xcode_13.4.app) 13.4.1 (/Applications/Xcode_13.4.1.app)...
https://minikube.sigs.k8s.io/docs/tutorials/multi_node/ contains extended tags in the Referenced YAML files section. Before:   After:  
Resource like yandex_cm_iam_binding needed to add bindings from terraform. ``` yc cm certificate add-access-binding \ --id ***** \ --service-account-name service-account \ --role certificate-manager.certificates.downloader ```
The data resource doesn't support the password argument, only cluster_id and name arguments could be passed (https://github.com/yandex-cloud/terraform-provider-yandex/blob/master/yandex/data_source_yandex_mdb_kafka_user.go). If we set the password we will get an error like: ``` Error:...
**Issue:** When specifying low memory limits for a diagramsnet container in Kubernetes, chromium processes could remain in a zombie state if we send a lot of parallel requests. The diagramsnet...
**Before:** Only `yandex_storage_bucket_policy` hid the access_key value. ``` # yandex_storage_bucket_policy.internal will be created + resource "yandex_storage_bucket_policy" "internal" { + access_key = (sensitive value) ``` For other `storage_bucket` resources the `access_key`...
- Added configurable `secretAnnotations` This allow to inject external secrets inside pipelines,e.g - https://docs.opensearch.org/docs/latest/data-prepper/common-use-cases/log-analytics/ . To pass credentials: ``` username: "${vault:secret/data/path#property#version}" password: "${vault:secret/data/data-prepper#password#1}" ``` - Added configurable `extraDeploy` This is...
This allow to inject external secrets, like e.g. Hashicorp Vault. ``` username: "${vault:secret/data/path#property#version}" password: "${vault:secret/data/vector#password#1}" ``` E.g.: ``` $ helm template -n vector . --set secrets.generic.abc=test # Source: vector/templates/secret.yaml apiVersion:...