Fedora / Red Hat / IBM Leftovers
-
Red Hat ☛ Automate Red Bait OpenShift on Alibaba Cloud
For many customers, running Red Hat OpenShift on Alibaba Cloud can be the architecture of choice for efficient hybrid cloud solutions. However, automating the deployment of clusters can be troublesome, as there are many alternatives to consider and some development required. This article offers a reference implementation to help you deploy Red Hat OpenShift clusters on Alibaba Cloud infrastructure using the Assisted Installer.
All code referenced in this article may be found here. Please review the code and configuration before executing, as described in this document.
Disclaimer
This repository is maintained exclusively by its contributors as a community effort.
-
Remi Collet ☛ Remi Collet: PHP version 8.2.25 and 8.3.13
RPMs of PHP version 8.3.13 are available in the remi-modular repository for Fedora ≥ 39 and Enterprise Linux ≥ 8 (RHEL, Alma, CentOS, Rocky...).
RPMs of PHP version 8.2.25 are available in the remi-modular repository for Fedora ≥ 39 and Enterprise Linux ≥ 8 (RHEL, Alma, CentOS, Rocky...).
There is no security fix this month, so no update for version 8.1.30.
-
The New Stack ☛ How Nvidia Scaled Its Cloud Services With KubeVirt [Ed: Seems like sponsored Red Hat spam/ad]
KubeVirt presents a unified shared platform where developers and administrators can build, modify and deploy applications in containers and VMs. KubeVirt allows VMs to be managed with the same software used to manage Kubernetes, whether you use Red Hat OpenShift or you roll your own (DIY).
-
DZone ☛ AI/ML Innovation in the Kubernetes Ecosystem [Ed: Red Hat Official ☛ Another ad?]
-
SDTimes ☛ Building a platform engineering team that’s set up for success
“Having a solid team makes the experience a lot easier for the people receiving and the people building the platform,” said Ryan Cook, senior principal software engineer at Red Hat.
-
Red Hat ☛ Preparing Valgrind Memcheck for x86-64-v3
Various distributions have been experimenting with generating x86-64-v3 instructions for all compiled code. Although Valgrind already supported emulation of those instructions, there was still work to do to make the memcheck tool produce correct diagnostics for memory issues.
What is Valgrind?
Valgrind is an instrumentation framework for building dynamic analysis tools that check C and C++ programs for errors. Memcheck is the default tool Valgrind uses when you don't ask for another tool (using
--tool=
). Memcheck keeps track of the validity and addressability of all memory a program uses. This means Memcheck can warn for usage of unaddressable memory or when program execution depends on values which were never defined. It also reports on memory leaks and allocated memory which is never freed.