Cloud Company Mirantis Receives New FIPS 140-2 Encryption Validation
Quelle: Mirantis
Quelle: Mirantis
With everyone and their dog shifting to containers, and away from virtual machines (VMs), we realized that running vendor-provided software on VMs at Google was slowing us down. So we moved. Enter Anthos, Google Cloud’s managed application platform, and its associated developer tools. Today we’ll take you through our process of moving Confluence and Acrolinx from VMs running in our private data center environment over to a fully managed, containerized deployment for Google. Both Confluence and Acrolinx were deployed before on the Google Compute Engine platform and have been used within Google for content management. In the past, Google used internal systems for allocating application resources, automating replication and providing high availability for enterprise applications, but these systems relied on customized infrastructure and they were often incompatible with enterprise software. The many frustrations that came with running enterprise applications on VMs included:Service turnup times in the order of daysHard-to-manage infrastructure and workloads programmaticallyChallenges with VM monoliths management (as compared to microservices)Reliable rollback of application install/upgrade failuresChallenges with enforcing security policies at scale… and many othersTo mitigate these frustrations, we made the shift to an industry-standard, universally available managed platform: Kubernetes.Kubernetes and AnthosDeploying Kubernetes gave us the ability to configure, manage, and extend workloads running on containers rather than VMs. The good news was that it could handle the scale of our deployments with ease.Anthos is Google Cloud’s platform of tools and technologies designed to ease the management of containerized workloads, whether running on Google Cloud, other clouds, or on-premises. It brings configuration management, service management, telemetry, logging and cluster management tooling. In addition, it saves operational overhead for our application teams.As our vendor-provided software became compatible with containerization, we could build on 15 years of experience running containerized workloads and enjoy the perks of using a fully managed cloud service for our applications.Adopting Anthos gave us some big benefits right away:Automated resource provisioningApplication lifecycle managementSecurity Policies ManagementConfig-as-code for workload stateThis removed substantial manual toil from our team, freeing them up for more productive work. Using Anthos Config Connector we could express the compute, networking and storage needs through code, allowing Anthos to allocate them without manual interaction. We also relied on Anthos to administer creating Kubernetes clusters and manage a single admin cluster that would host the Config Connector. This gave us simpler orchestration when we needed to create new Kubernetes clusters to run our applications.How we modernized operationsOur continuous integration and continuous deployment process benefitted from Anthos as well. By using Anthos Config Management (Config Sync), a multi-repository configuration sync utility, we can automate the process of applying our desired configuration to the Kubernetes clusters that we would otherwise have applied manually before via kubectl. The multi-repo Config Sync provides a consistent experience when managing both the common security policies across clusters and the workload specific configs that are namespace-scoped.Config Sync is a Kubernetes Custom Resource Definition (CRD) resource which is installed on a user cluster by GKE Hub.GKE Hub provides networking assistance within Anthos, and lets you logically group together similar GKE clusters. Once the clusters are registered with a GKE Hub, the same security policies can be administered on all the registered clusters. Onboarding a new application then wouldn’t incur any additional overhead, because the same security policies would be applied automatically.The resulting clusters and administration of these applications looks like this:A high level view of Anthos-managed workloads running on GKE clustersOur updated deployment processWe’ve deployed a variety of third-party applications on Anthos. Today, we’ll walk you through how we set up Confluence and Acrolinx.To provision and deploy, we need to:Ensure that all the configs (both security policies and workload configs) are stored in a single source of truth (i.e Git repos). Any changes must be reviewed and approved by multiple parties to prevent unilateral changes.Deploy and enforce our required security policies.Express the desired state of workload configs in a Git repo.Deploy a Continuous Integration and Continuous Deployment pipeline to ensure that changes to the configs are tested before committing them to a Git repo. Such configs will then be applied to the target clusters to ensure the desired state of both the applications.Even though we’re running multiple segmented workloads, we can apply common security policies to them all. We also delegate application deployment to the developers while maintaining security guardrails to prevent mistakes.How we set up Anthos clustersWe know what we want to deploy, and how to protect them. Let’s dig into how we can set up those clusters with Terraform and then how to make sure all our security policies are applied. Once that is complete we can let the developer or operator manage any future changes to the application, while the cluster admin retains control of any cluster policy changes.We’ll register the cluster with the right GKE Hub, then apply our desired configuration to that cluster, and finally deploy the applications to their namespaces.Let’s start with the prod GKE cluster. We can create it using these Terraform templates,then cluster with GKE Hub using:Next, we will enable the ACM/Config Sync feature for the GKE Hub, hub-prod, using the gcloud command-line:Here, a ConfigManagement resource configures Config Sync on the prod GKE cluster with the relevant root Git repo (root-prod).After creating the GKE clusters, we will set up cluster namespaces to deploy Confluence and Acrolinx:Here’s one way the root and namespace repos can be organized in a root-prod structured repo.All the cluster-scoped resources will be kept in the cluster directory while all the namespace scoped resources for the given applications will be kept in each of the namespaces sub-directories. This separation allows us to define the common cluster scoped security policies at a higher level while still defining application configs at each application namespace level. The cluster admins can own the security policies while delegating namespace ownership to the developers. We now have a GKE cluster prod that is registered with a GKE Hub. Since the cluster is registered with the GKE Hub with Config Sync enabled, the security policies now can be applied on this cluster.Deploying changes to applicationsIn order for Config Sync to apply config changes to resources of Confluence and Acrolinx applications, each of the Namespace resources and Namespace repos must first be configured.Looking at an example of a root-prod Git repo as shown above and the respective Namespaces repos, RepoSync resources and how Confluence and Acrolinx application resources will be managed by Config Sync in the prod GKE cluster.The following is an example of a Namespace and RepoSync resource in the confluence-prod directory.Config Sync will read the Namespace config file and create confluence-prod Namespace in the same prod GKE cluster. The RepoSync resource sets up a process to connect to the Git repo to find configuration information that will be used by the Confluence application.We are now ready to create Kubernetes resources for Confluence from its namespace Git repo.Next, we can deploy a StatefulSet resource that defines the container’s spec (CPU, RAM, etc.) for running Confluence app in the confluence-prod namespace repo: After submission to the repo, Config Sync will read the StatefulSet and deploy the image based on the resources listed.Our security practiceEvery organization has a requirement to ensure that the workloads are made secure without any additional efforts from the developers and that there is a central governing process that enforces such security policies across all the workloads. Thisensures that everyone follows best practices when deploying workloads. It also reduces much of the burden and cognitive load from the developers when ensuring that workloads follow such security principles and policies.Historically, when running applications on VMs, it has been traditionally difficult to micro-segment applications, apply a different set of policies to the micro-segmented applications and/or based on workload identities. Some examples of such policies are: whether an application is built and deployed in a verifiable manner; preventing privilege escalation (e.g setuid binaries) and applying that config for a group of workloads etc.With the advent of Kubernetes and standards such as OPA (Open Policy Agent), it is possible now to micro-segment workloads, define a set of policies that can enforce certain constraints and rules at the workload identity level for a group of similar workload resources. This is one such library of OPA Constraints that can be used to enforce policy across Cluster workloads.Policy Controller enables the enforcement of fully programmable policies. You can use these policies to actively block non-compliant API requests, or simply to audit the configuration of your clusters and report violations. Policy Controller is based on the open source Open Policy Agent Gatekeeper project and comes with a full library of pre-built policies for common security and compliance controls.This will allow the developers to focus on just the application lifecycle management while the platform admins will ensure that such security policies are enforced on all the registered clusters and workloads.ConclusionIn the end we got to a much better place by deploying our applications with Anthos, backed by Kubernetes.Our security policies were enforced automatically, we scale up and down with demand, and new versions could be deployed smoothly. Our developers enjoyed faster workflows, whether spinning up a new environment or testing out an update for stability. Provisioning got easier too, with less overhead for the team, especially as deployments grew to service the whole of Google.Overall we’re quite happy with how we improved developer productivity with faster application turnup times, going from days to just hours for a new application. At the same time we’re better able to reliably enforce policies that ensure that applications are hosted in a secure and reliable environment. We’re glad we can share some of our journey with you; if you want to try it out yourself, get started with Anthos today.Related ArticleAccelerating Government’s Zero Trust JourneyIn May, the White House issued an Executive Order aiming to improve the nation’s cybersecurity defenses and requiring US Federal agencies…Read Article
Quelle: Google Cloud Platform
Der offene Roadster Skysphere Concept von Audi wird elektrisch angetrieben und zeigt, wie sich der Hersteller künftige Designs vorstellt. (Elektroauto, Auto)
Quelle: Golem
Ikea verkauft die Modul-Steckdosenleiste Åskväder in einer ersten Filiale in Deutschland, die allgemeine Markteinführung steht kurz bevor. (Ikea, Smart Home)
Quelle: Golem
Golem.de hat die Leserschaft gefragt, wie sie zu Windows 11 steht. Die Antworten zeigen ein eher positives Bild vom Betriebssystem. Von Oliver Nickel (Windows 11, Studie)
Quelle: Golem
Mit Version 91 des Firefox-Browsers setzt das Mozilla-Team außerdem auf das automatische Löschen von Cookies, was Datenlecks verhindern soll. (Firefox, Browser)
Quelle: Golem
Etwa fünf Monate nach der RX 6700 XT legt AMD mit einem neuen Modell nach. Der Verkauf der Radeon RX 6600 XT beginnt heute. (AMD Navi, AMD)
Quelle: Golem
One of the best things organizations can do to transform their operations is also one of the things they’re often hesitant to do: embrace automation. Read more about some common misconceptions of automation and how it can expand your possibilities as an organization.
Quelle: CloudForms
Critical care patients generate huge volumes of data about their current state which is a challenge for clinicians to digest. Suppose computers could help clinicians analyze the data and detect diseases like sepsis early, before patients are deathly ill. That’s what we’re working towards with artificial intelligence and machine learning.
Quelle: CloudForms
The block editor makes site creation fast and flexible. Now, you can use that same huge library of blocks available when editing your pages and posts to edit and customize your sidebars, headers, and footers.
What are Widgets?
Sidebars, headers, and footers on your WordPress.com website are powered by widgets. Widgets are small but powerful modules to arrange and display content and tools around the edges of your posts and pages. Until now, widgets have been the best way to insert a variety of content — from calendars to social icons — into the sidebar, header, and footer of your site.
Flexibility with the Block Editor
Setting up and managing widgets was a very static and often tricky process. The block editor you’re familiar with in pages and posts is now part of the widgets editor. This aims to put editing power in your control.
You’re no longer limited to just widgets — any block is for your choosing.
For example, in your sidebar, header, and footer, you can now:
Tweak the structure by adding columns or spacersQuickly add content like a Search block or a headerFormat content via colors and rich text editing
What About Older Widgets?
Every widget that exists today will be incorporated into blocks.
But don’t worry — your current widgets will still work and can be used alongside your other blocks. Even legacy widgets that don’t have a block equivalent will work. Just use your preferred method of inserting a block, search for the widget’s name, and insert.
Getting Started
If you’ve never edited the content in your sidebar, header, or footer, now is a great time to experiment!
To edit the content, go to Appearance → Customize → Widgets and you’ll now be able to directly add widgets and any blocks, while previewing exactly what they’ll look like on your site.
This update is just one more step on the way to a more intuitive site editing experience. Go forth and create!
Quelle: RedHat Stack