ContentPosts from @swarna-padma..
Link
@faun shared a link, 1 year, 5 months ago
FAUN.dev()

Consul 1.19 improves Kubernetes workflows, snapshot support, and Nomad integration

HashiCorp Consul 1.19 enhances user experience with features like a new custom resource definition (CRD) for registering external services and multi-location storage for Consul snapshots. Support for HashiCorp Nomad now includes an API gateway, transparent proxy, and admin partitions. Improvements s.. read more  

Consul 1.19 improves Kubernetes workflows, snapshot support, and Nomad integration
Link
@faun shared a link, 1 year, 5 months ago
FAUN.dev()

A Guide to Horizontal Pod Autoscaler

The Horizontal Pod Autoscaler (HPA) in Kubernetes automatically adjusts the number of pod replicas based on observed CPU utilization or other select metrics, such as memory. The calculation for determining the desired number of replicas takes into account the current number of replicas, current metr.. read more  

A Guide to Horizontal Pod Autoscaler
Link
@faun shared a link, 1 year, 5 months ago
FAUN.dev()

Grafana update: Service account tokens are replacing API keys

Service accounts are generally available in Grafana 9.1, replacing API keys for enhanced security and granular access control. API keys will no longer be created after Aug. 31, 2024, and will be fully deprecated by Jan. 31, 2025. Developers must migrate to Service Account Tokens (SATs) to maintain a.. read more  

Grafana update: Service account tokens are replacing API keys
Link
@faun shared a link, 1 year, 5 months ago
FAUN.dev()

Quickly adopt new AWS features with the Terraform AWS Cloud Control provider

The Terraform AWS CC Provider is now generally available, leveraging the AWS Cloud Control API to provide support for over 950 AWS resources and data sources. Developed in collaboration between AWS and HashiCorp, the provider allows for faster access to new AWS features and services through consiste.. read more  

Quickly adopt new AWS features with the Terraform AWS Cloud Control provider
Link
@faun shared a link, 1 year, 5 months ago
FAUN.dev()

Attackers deploying new tactics in campaign targeting exposed Docker APIs

The attackers behind Spinning YARN have launched a new cryptojacking campaign targeting publicly exposed Docker Engine hosts. They introduced two novel binary payloads, chkstart and exeremo, to propagate the malware via SSH and dynamically execute payloads. The attackers also modified existing syste.. read more  

Link
@faun shared a link, 1 year, 5 months ago
FAUN.dev()

The Problem with OpenTelemetry

The author argues that OpenTelemetry has deviated from its original tracing focus, becoming over-complicated with additional features like logs and metrics. They propose a leaner tracing-focused SDK to improve data quality and portability, noting the current struggles with version conflicts and redu.. read more  

Link
@faun shared a link, 1 year, 5 months ago
FAUN.dev()

Managing MySQL Shell Configuration Options

MySQL Shell is a command line interface for managing MySQL instances. Users can list, update, and persist configuration changes using the \option command. Version 8.4 introduces the ability to save configuration changes to a local file for persistence across sessions. The origin of configuration val.. read more  

Link
@faun shared a link, 1 year, 5 months ago
FAUN.dev()

Three Laws of Software Complexity (or: why software engineers are always grumpy)

Most software engineers are destined to struggle with unnecessary complexity due to three fundamental laws: the degradation of well-designed systems, the existence of complexity as a moat with leaky abstractions, and the absence of an upper limit on software complexity. These laws result in engineer.. read more  

Link
@faun shared a link, 1 year, 5 months ago
FAUN.dev()

Updates for security issue affecting IntelliJ-based IDEs 2023.1+ and JetBrains GitHub Plugin

A security issue in the JetBrains GitHub plugin on the IntelliJ Platform disclosed access tokens to third-party sites, affecting versions from 2023.1 onwards. The issue, assigned CVE-2024-37051, is resolved with updates. Users should revoke GitHub tokens and update their plugins to the latest versio.. read more  

Link
@faun shared a link, 1 year, 5 months ago
FAUN.dev()

Finding out where Syscalls are Called From: Stack Traces with Strace

Shows program activity without needing debug info but displays only syscalls. With debug info, it can show a stack trace for each syscall. A Python script can convert addresses in strace output to readable filenames and line numbers... read more