积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部云计算&大数据(110)Apache Kyuubi(42)OpenShift(36)Kubernetes(20)系统运维(9)Linux(9)eBPF(8)Cilium(7)数据库(5)数据库中间件(5)

语言

全部中文(简体)(69)英语(59)英语(1)

格式

全部PDF文档 PDF(100)其他文档 其他(28)DOC文档 DOC(1)
 
本次搜索耗时 0.184 秒,为您找到相关结果约 129 个.
  • 全部
  • 云计算&大数据
  • Apache Kyuubi
  • OpenShift
  • Kubernetes
  • 系统运维
  • Linux
  • eBPF
  • Cilium
  • 数据库
  • 数据库中间件
  • 全部
  • 中文(简体)
  • 英语
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Kubernetes开源书 - 周立

    响Node上的现有的Pod。这对于做Node重启之 前的准备⼯作很有⽤。例如,要将node标记为不可调度,可使⽤如下命令: kubectl cordon $NODENAME 请注意,由DaemonSet Controller创建的Pod会绕过Kubernetes调度程序,并且不遵循节点上的unschedulable属性。 因为,我们假设daemon进程属于机器,即使在准备重启时正被耗尽。 ReplicaSet 以及 Deployment ,Pod预期不会终⽌,例如Web服务器。 ReplicationController仅适⽤于 restartPolicy 为Always的Pod。 DaemonSet ,每台机器都需要运⾏⼀个Pod,因为它们提供特定于机器的系统服务。 以上三种类型的Controller都包含⼀个PodTemplate。建议创建适当的Controller,让Controller创建Pod,⽽⾮直接创建 ,Kubelet或Docker)。 Job(作业) 对于可预期会终⽌的Pod(即批处理作业),可以使⽤ Job ⽽⾮ReplicaSet。 DaemonSet 对于提供机器级功能(例如机器监控或⽇志)的Pod,请使⽤ DaemonSet ⽽⾮ReplicaSet。 这些Pod的⽣命周期与机器 的⽣命周期相关:在其他Pod启动之前,这些Pod需要在机器上运⾏;当机器准备重启/关闭时,可安全终⽌这些Pod。
    0 码力 | 135 页 | 21.02 MB | 1 年前
    3
  • epub文档 Cilium v1.9 Documentation

    Install Cilium Install Cilium as DaemonSet [https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/] into your new Kubernetes cluster. The DaemonSet will automatically install itself as yaml first. Alternatively, it is possible to manually generate a YAML manifest for the Cilium DaemonSet and Hubble Relay/UI as follows. The generated YAML can be applied on top of an existing installation: --set hubble.ui.enabled=true > cilium-with-hubble.yaml # This will modify your existing Cilium DaemonSet and ConfigMap kubectl apply -f cilium-with-hubble.yaml The Cilium agent pods will be restarted
    0 码力 | 1263 页 | 18.62 MB | 1 年前
    3
  • epub文档 Cilium v1.5 Documentation

    Key-Value store clang+LLVM iproute2 Firewall Rules Privileges Upgrade Guide Running a pre-flight DaemonSet Upgrading Micro Versions Upgrading Minor Versions Rolling Back Version Specific Notes Advanced Configura�on Install Cilium Install Cilium as DaemonSet [h�ps://kubernetes.io/docs/concepts/workloads/controllers/daemonset/] into your new Kubernetes cluster. The DaemonSet will automa�cally install itself as Kubernetes Install Cilium Install Cilium as a DaemonSet [h�ps://kubernetes.io/docs/concepts/workloads/controllers/daemonset/] into your new Kubernetes cluster. The DaemonSet will automa�cally install itself as Kubernetes
    0 码力 | 740 页 | 12.52 MB | 1 年前
    3
  • epub文档 Cilium v1.6 Documentation

    Install Cilium Install Cilium as DaemonSet [https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/] into your new Kubernetes cluster. The DaemonSet will automatically install itself as cilium kubectl create -f cilium.yaml The NodeInit DaemonSet is required to prepare the GKE nodes as nodes are added to the cluster. The NodeInit DaemonSet will perform the following actions: Reconfigure yaml kubectl create -f cilium.yaml This will create both the main cilium daemonset, as well as the cilium-node-init daemonset, which handles tasks like mounting the BPF filesystem and updating the existing
    0 码力 | 734 页 | 11.45 MB | 1 年前
    3
  • epub文档 Cilium v1.8 Documentation

    Install Cilium Install Cilium as DaemonSet [https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/] into your new Kubernetes cluster. The DaemonSet will automatically install itself as /sys/fs/bpf Install Cilium Install Cilium as DaemonSet [https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/] into your new Kubernetes cluster. The DaemonSet will automatically install itself as --set global.hubble.relay.enabled=true \ --set global.hubble.ui.enabled=true Restart the Cilium daemonset to allow Cilium agent to pick up the ConfigMap changes: kubectl rollout restart -n $CILIUM_NAMESPACE
    0 码力 | 1124 页 | 21.33 MB | 1 年前
    3
  • epub文档 Cilium v1.7 Documentation

    Install Cilium Install Cilium as DaemonSet [https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/] into your new Kubernetes cluster. The DaemonSet will automatically install itself as Delete VPC CNI (aws-node DaemonSet) Cilium will manage ENIs instead of VPC CNI, so the aws-node DaemonSet has to be deleted to prevent conflict behavior. Note Once aws-node DaemonSet is deleted, EKS will will not try to restore it. kubectl -n kube-system delete daemonset aws-node Prepare & Deploy Cilium Note First, make sure you have Helm 3 installed [https://helm.sh/docs/using_helm/#install-helm]. If
    0 码力 | 885 页 | 12.41 MB | 1 年前
    3
  • epub文档 Cilium v1.10 Documentation

    issues due to aws-node DaemonSet flushing Linux routing tables. The issues can be fixed by restarting all pods, alternatively to avoid such issues you can delete aws-node DaemonSet prior to installing Cilium OK /¯¯\__/¯¯\ Hubble: disabled \__/¯¯\__/ ClusterMesh: disabled \__/ DaemonSet cilium Desired: 2, Ready: 2/2, Available: 2/2 Deployment cilium-operator --set nativeRoutingCIDR=$NATIVE_CIDR The NodeInit DaemonSet is required to prepare the GKE nodes as nodes are added to the cluster. The NodeInit DaemonSet will perform the following actions: Reconfigure
    0 码力 | 1307 页 | 19.26 MB | 1 年前
    3
  • epub文档 Cilium v1.11 Documentation

    issues due to aws-node DaemonSet flushing Linux routing tables. The issues can be fixed by restarting all pods, alternatively to avoid such issues you can delete aws-node DaemonSet prior to installing Cilium OK /¯¯\__/¯¯\ Hubble: disabled \__/¯¯\__/ ClusterMesh: disabled \__/ DaemonSet cilium Desired: 2, Ready: 2/2, Available: 2/2 Deployment cilium-operator ipv4NativeRoutingCIDR=$NATIVE_CIDR The NodeInit DaemonSet is required to prepare the GKE nodes as nodes are added to the cluster. The NodeInit DaemonSet will perform the following actions: Reconfigure
    0 码力 | 1373 页 | 19.37 MB | 1 年前
    3
  • pdf文档 OpenShift Container Platform 4.12 专用硬件和驱动程序启用

    章 章 驱动 驱动程序工具包 程序工具包 7 4. 构建器 Pod 成功完成后,将驱动程序容器镜像部署为 DaemonSet。 a. 驱动程序容器必须使用特权安全上下文运行,才能在主机上加载内核模块。以下 YAML 文件 包含用于运行驱动程序容器的 RBAC 规则和 DaemonSet。将此 YAML 保存为 1000- drivercontainer.yaml。 $ oc create -f system:serviceaccount:simple-kmod-demo:simple-kmod-driver-container --- apiVersion: apps/v1 kind: DaemonSet metadata: name: simple-kmod-driver-container spec: selector: matchLabels: app: si Operator 可用。 4.3. 内核模块部署 对于每个 Module 资源,内核模块管理 (KMM) 可以创建多个 DaemonSet 资源: 集群中运行的每个兼容内核版本有一个 ModuleLoader DaemonSet。 一个设备插件 DaemonSet (如果已配置)。 模块加载守护进程设置资源运行 ModuleLoader 镜像来加载内核模块。模块加载程序镜像是一个 OCI
    0 码力 | 54 页 | 591.48 KB | 1 年前
    3
  • pdf文档 Service Mesh的实践分享

    Service Registry API Gateway 健康检查 服务注册 Registry agent 服务发现 HTTP/JSON HTTP/JSON容器化 • Proxy Daemonset • 每台宿主机一台Proxy • Proxy地址文件 • Mount到所有pod • 客户端容器监听文件,根据地 址文件找Proxy • 切换地址到remote proxy,轻 易实现优雅退出和滚动升级 易实现优雅退出和滚动升级 • 增强隔离性 • Local Proxy被pod共享 • 自保护,对来源方限流和流量 转移 • 资源适配 • 根据宿主机的硬件配置定制不 同资源配置的Daemonset Local Proxy Pod 写入地址 监听变化 宿主机 Proxy address File Pod Remote Proxy Cluster 主流量 备用或限流 件会给自定义需求带来障碍。 • 保持客户端选择proxy的自由度和灵活性,在我们的实践中好处大 于坏处胖客户端 vs. service mesh vs. cluster 胖客户端 Sidecar(物理机) Daemonset(云) Cluster(HTTP) 接入难度 容易。打入依赖包即可 容易。需依赖SDK 容易。需依赖SDK 编码难度 容易。IDL接口规范 容易。IDL接口规范 难。需要自行处理HTTP请求和
    0 码力 | 30 页 | 4.80 MB | 5 月前
    3
共 129 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 13
前往
页
相关搜索词
Kubernetes开源周立Ciliumv1Documentation1011OpenShiftContainerPlatform4.12专用硬件驱动程序驱动程序启用ServiceMesh实践分享
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩