Tag

CloudNative

1 views collected around this technical thread.

Cloud Native Technology Community
Cloud Native Technology Community
Jun 24, 2024 · Cloud Native

Recursive ReadOnly Volume Mounts in Kubernetes 1.30

Kubernetes 1.30 introduces the recursiveReadOnly mount option, turning previously imperfect read‑only volume mounts into fully recursive read‑only mounts, while explaining compatibility requirements, required component versions, and usage examples with YAML manifests.

CloudNativeContainerSecurityKubernetes
0 likes · 4 min read
Recursive ReadOnly Volume Mounts in Kubernetes 1.30
360 Smart Cloud
360 Smart Cloud
Jun 14, 2024 · Cloud Native

Knative Eventing: Concepts, Core Components, and Practical Usage Patterns (Source‑to‑Sink, Channel & Subscription, Broker & Trigger)

This article introduces Knative Eventing concepts and core components, then demonstrates three practical usage patterns—Source‑to‑Sink, Channel and Subscription, and Broker and Trigger—through step‑by‑step examples, Kubernetes manifests, and command‑line operations, highlighting event flow, filtering, and reply handling.

CloudNativeEventDrivenEventing
0 likes · 32 min read
Knative Eventing: Concepts, Core Components, and Practical Usage Patterns (Source‑to‑Sink, Channel & Subscription, Broker & Trigger)
Cloud Native Technology Community
Cloud Native Technology Community
May 23, 2024 · Cloud Native

Kubernetes Service Network Mechanisms: Overview, Access Methods, Container Networking, Service Types, DNS, kube-proxy Modes, Source IP Preservation, and Ingress

This article provides a comprehensive guide to Kubernetes Service networking, covering container network models, intra‑ and inter‑node pod communication, Service‑Pod relationships, Service types (ClusterIP, NodePort, LoadBalancer, ExternalName), CoreDNS resolution, kube‑proxy operating modes, source IP preservation strategies, and Ingress handling.

CloudNativeDNSIngress
0 likes · 27 min read
Kubernetes Service Network Mechanisms: Overview, Access Methods, Container Networking, Service Types, DNS, kube-proxy Modes, Source IP Preservation, and Ingress
DevOps
DevOps
Mar 13, 2024 · Cloud Native

Integrating CMDB with Cloud‑Native Container Workloads Using Init Containers, Hooks, and Event Monitoring

The article examines how CMDB can be combined with cloud‑native container architectures by leveraging Kubernetes init containers, lifecycle hooks (PostStart and PreStop), and an event‑monitoring‑to‑MQ pipeline, discussing the technical rationale, implementation details, advantages, and challenges of each approach.

CMDBCloudNativeEventMonitoring
0 likes · 9 min read
Integrating CMDB with Cloud‑Native Container Workloads Using Init Containers, Hooks, and Event Monitoring
Beike Product & Technology
Beike Product & Technology
Jan 29, 2024 · Information Security

Kubernetes Security Risks and Hardening Recommendations

This article analyzes Kubernetes security threats from cloud, cluster, and container perspectives, enumerates high‑risk permissions, default privileged accounts, and insecure configurations, and provides concrete hardening steps such as least‑privilege RAM policies, etcd encryption, RBAC tightening, and workload isolation measures.

CloudNativeETCDPodSecurity
0 likes · 31 min read
Kubernetes Security Risks and Hardening Recommendations
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Nov 20, 2023 · Cloud Native

Implementing a Custom Nacos‑like Service Discovery and Configuration Management with Spring Boot

This article explains how to build a Spring Boot‑based service registry that replicates Nacos' core features—service discovery, health‑checking, and dynamic configuration management—by creating server‑side registration APIs, scheduled heartbeat checks, client registration logic, and database‑backed configuration storage.

CloudNativeConfigurationManagementJava
0 likes · 10 min read
Implementing a Custom Nacos‑like Service Discovery and Configuration Management with Spring Boot
Cloud Native Technology Community
Cloud Native Technology Community
Aug 31, 2023 · Cloud Native

Restartable Init Containers as Sidecar Feature in Kubernetes 1.28

This article explains the new sidecar feature in Kubernetes 1.28 that adds a restartPolicy field to init containers, describes its behavior, provides usage examples, discusses when to adopt it, outlines migration steps, lists known issues, and invites community feedback.

AlphaFeatureCloudNativeInitContainer
0 likes · 11 min read
Restartable Init Containers as Sidecar Feature in Kubernetes 1.28
Practical DevOps Architecture
Practical DevOps Architecture
Aug 29, 2023 · Cloud Native

Understanding Kubernetes Deployment Controller and Rolling Updates

This article explains the core functions of the Kubernetes Deployment controller, describes how rolling updates and canary releases work, provides a sample Deployment YAML, and demonstrates common kubectl commands for inspecting, updating, and rolling back deployments in a cloud‑native environment.

CloudNativeDeploymentKubernetes
0 likes · 4 min read
Understanding Kubernetes Deployment Controller and Rolling Updates
Selected Java Interview Questions
Selected Java Interview Questions
Jul 26, 2023 · Cloud Native

Customizing Docker Images with Dockerfile: Instructions and Best Practices

This article explains how to use a Dockerfile to customize Docker images, covering the purpose of each instruction such as FROM, RUN, COPY, ADD, CMD, ENTRYPOINT, ENV, VOLUME, EXPOSE, and WORKDIR, and provides practical examples and best‑practice tips for building efficient, minimal images.

CloudNativeDevOpsDocker
0 likes · 26 min read
Customizing Docker Images with Dockerfile: Instructions and Best Practices
Didi Tech
Didi Tech
Jul 11, 2023 · Operations

DevOps Practices and Challenges at Didi Ride‑Hailing: From Development to Operations

Didi’s ride‑hailing R&D team addresses efficiency and stability challenges of a large micro‑service ecosystem by unifying a Go stack, common framework, and data models, using eBPF traffic recording for automated regression testing, and applying AIOps alert filtering, knowledge‑graph root‑cause analysis, and a localization robot for rapid fault recovery, while targeting full CI/CD automation with static analysis, service‑mesh observability, and chaos engineering.

AIOpsCloudNativeDevOps
0 likes · 22 min read
DevOps Practices and Challenges at Didi Ride‑Hailing: From Development to Operations
Efficient Ops
Efficient Ops
May 8, 2023 · Operations

How Intelligent Ops Transforms Container Cloud Management at Scale

This article summarizes a speaker’s insights from GOPS 2023 on the challenges of large‑scale container cloud operations and presents a comprehensive intelligent‑ops framework—including health scoring, automated pod anomaly detection, smart scaling, and multi‑center disaster recovery—to improve visibility, efficiency, and reliability in Kubernetes environments.

CloudNativeIntelligentOpsKubernetes
0 likes · 18 min read
How Intelligent Ops Transforms Container Cloud Management at Scale
Bilibili Tech
Bilibili Tech
Apr 28, 2023 · Cloud Native

Remote StateBackend for Flink: Design, Optimizations, and Cloud‑Native Migration

To enable Bilibili’s cloud‑native migration, the team built a RemoteStateBackend that moves Flink’s keyed state to the Taishan KV store, using deterministic KeyGroup placement, per‑shard snapshots, asynchronous write batching, off‑heap caching with Bloom‑filter filtering, and a fixed‑size memory model, which together reduce checkpoint overhead, improve disk utilization, and accelerate rescaling for more than one hundred production jobs.

CloudNativePerformanceOptimizationRemoteStorage
0 likes · 18 min read
Remote StateBackend for Flink: Design, Optimizations, and Cloud‑Native Migration
Cloud Native Technology Community
Cloud Native Technology Community
Mar 30, 2023 · Cloud Native

Kubernetes List/Watch, Informer Mechanism, and Writing Controllers for Pods and Custom Resources

This article explains how Kubernetes uses the List/Watch API and the Informer client library to monitor resources, compares direct HTTP Watch with Informer, provides Go code examples for pod controllers, shared informers, custom CRD controllers, and introduces higher‑level frameworks such as controller‑runtime and Kubebuilder.

CloudNativeControllerCustomResource
0 likes · 49 min read
Kubernetes List/Watch, Informer Mechanism, and Writing Controllers for Pods and Custom Resources
System Architect Go
System Architect Go
Mar 21, 2023 · Cloud Native

Understanding and Using Kubernetes Volume Snapshots

This article explains the concepts, architecture, configuration, and practical use cases of Kubernetes volume snapshots, including how to define snapshot classes, create snapshots, clone PVCs, and perform consistent backups across different storage providers and clusters.

CSICloudNativeKubernetes
0 likes · 11 min read
Understanding and Using Kubernetes Volume Snapshots
Architect
Architect
Feb 27, 2023 · Databases

Understanding Prometheus V2 Storage Engine and Query Process

This article explains the architecture of Prometheus V2, detailing its on‑disk block layout, chunk and index formats, the inverted index mechanism, and how queries locate and retrieve time‑series data, while also covering in‑memory structures and practical usage patterns.

CloudNativePrometheusStorageEngine
0 likes · 14 min read
Understanding Prometheus V2 Storage Engine and Query Process
Top Architect
Top Architect
Dec 12, 2022 · Cloud Native

Building a Container Platform at Ximalaya: Practices, Principles, and Evolution

The article chronicles Ximalaya's journey from early Docker-based Java project templates to a mature Kubernetes-driven container platform, detailing development principles, health‑check strategies, deployment workflows, middleware integration, and lessons learned about scaling, automation, and collaborative engineering.

CloudNativeContainerizationDeployment
0 likes · 13 min read
Building a Container Platform at Ximalaya: Practices, Principles, and Evolution
DeWu Technology
DeWu Technology
Oct 24, 2022 · Artificial Intelligence

KubeAI Platform Implementation for AI Business Containerization

KubeAI, GetApp’s cloud‑native AI platform, unifies data set management, notebook‑based and task‑driven model training, automated versioning and deployment, and workflow orchestration, delivering up to 65% faster model iteration and up to 90% lower resource costs for AI teams.

AICloudNativeContainerization
0 likes · 17 min read
KubeAI Platform Implementation for AI Business Containerization