OpenShift Container Platform 4.8 Service Meshaccordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version. Red Hat, as the licensor of this document, waives the right to enforce, 版本 Istio 1.12.7 Envoy Proxy 1.20.6 Jaeger 1.36 Kiali 1.48.2-1 1.2.2.2.2. 复制路由标签 在这个版本中,除了复制注解外,您还可以为 OpenShift 路由复制特定的标签。Red Hat OpenShift Service Mesh 将 Istio 网关资源中存在的所有标签和注解(从 kubectl.kubernetes 要启用这个功能,请在 ServiceMeshControlPlane 中为 Istiod 容器设置以下环境变量: 使用 SameNamespace 或 All 设置在 Gateway API 监听器上限制路由附加功能可能。Istio 会忽略 listeners.allowedRoutes.namespaces 中标签选择器的使用,并恢复到默认行为 (SameNamespace)。 1.2.2.5. Red0 码力 | 344 页 | 3.04 MB | 1 年前3
Zabbix 5.2 Manualfile draft with parameters to be updated: ### Option: HistoryStorageURL # History storage HTTP[S] URL. # # Mandatory: no # Default: # HistoryStorageURL= ### Option: HistoryStorageTypes # Comma separated conf.php) draft with parameters to be updated: // Elasticsearch url (can be string if same url is used for all types). $HISTORY['url'] = [ 'uint' => 'http://localhost:9200', 'text' => 'http://localhost:9200' 前端配置文件的示例参数值如下:Example parameter values to fill the Zabbix frontend configuration file with: $HISTORY['url'] = 'http://test.elasticsearch.lan:9200'; $HISTORY['types'] = ['str', 'text', 'log']; 此配置文件将文本、字符、日志类型的历史数据存储到0 码力 | 1725 页 | 11.53 MB | 1 年前3
Zabbix 6.0 Manual要了解有关配置模板的更多信息,请参阅HTTP 模板操作。 Mikrotik • MikroTikSNMP - 53 新型号特定模板,用于监控各种型号的 MikroTik 以太网路由器和交换机,请参阅 完整列 表;https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/net/mikrotik); • configuration file as named session or default parameters: • Connection-related parameters: broker URL, topic, username, and password; • TLS encryption parameters: location of the top-level CA(s) certificate 服务使以上修改的配置生效: systemctl restart httpd.service 60 Web 服务器加固 在 URL 的根目录上启用 Zabbix 将虚拟主机添加到 Apache 配置,并将文档根目录的永久重定向设置为 Zabbix SSL URL。注意将 example.com 替换为服务器的实际名 称。 /etc/httpd/conf/httpd.conf #Add lines 0 码力 | 1741 页 | 22.78 MB | 1 年前3
Zabbix 5.0 Manualserver 和前端 在 Zabbix server 初始的配置文件中,需要更新如下参数: ### Option: HistoryStorageURL # History storage HTTP[S] URL. # # Mandatory: no # Default: # HistoryStorageURL= ### Option: HistoryStorageTypes # Comma separated Zabbix 前端配置文件 (conf/zabbix.conf.php) 中,需要更新如下参数: // Elasticsearch url (can be string if same url is used for all types). $HISTORY['url'] = [ 'uint' => 'http://localhost:9200', 'text' => 'http://localhost:9200' in Elasticsearch. $HISTORY['types'] = ['uint', 'text']; 例如使用以下示例参数值,来设置 Zabbix 前端的配置文件: $HISTORY['url'] = 'http://test.elasticsearch.lan:9200'; $HISTORY['types'] = ['str', 'text', 'log']; 使用此配置,文本、字符和日志类型的历史数据将存储到0 码力 | 2715 页 | 28.60 MB | 1 年前3
OpenShift Container Platform 4.14 Operatoraccordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version. Red Hat, as the licensor of this document, waives the right to enforce, 组是一个逻辑上相关的对象集。例如,Job 或 ScheduledJob 等所有 批处理对象,均可添加至批处理 API 组(如 batch.api.example.com)中。最好使用您机构 的完全限定域名(FQDN)。 指定 URL 中要用的版本名称。每个 API 组都可能存在于多个版本中,例如 v1alpha、v1beta、v1。 指定自定义对象可用于某一个项目 (Namespaced) 还是集群中的所有项目 (Cluster)。 kind: CronTab 8 shortNames: - ct 9 第 第 2 章 章 了解 了解 OPERATOR 71 6 7 8 9 指定 URL 中要用的复数名称。plural 字段与 API URL 网址中的资源相同。 指定将在 CLI 上用作别名并用于显示的单数名称。 指定可创建的对象类型。类型可以采用 CamelCase。 指定与 CLI 中的资源相匹配的较短字符串。0 码力 | 423 页 | 4.26 MB | 1 年前3
Flask入门教程Werkzeug(WSGI 工具库)完成和 Jinja(模板渲 染库)完成,因为 Flask 包装了这两个依赖,我们暂时不用深入了解它们。 主页 这一章的主要任务就是为我们的程序编写一个简单的主页。主页的 URL 一般就是 根地址,即 / 。当用户访问根地址的时候,我们需要返回一行欢迎文字。这个任 务只需要下面几行代码就可以完成: app.py:程序主页 from flask import Flask route() 装 饰器来为这个函数绑定对应的 URL,当用户在浏览器访问这个 URL 的时候,就会 触发这个函数,获取返回值,并把返回值显示到浏览器窗口: @app.route('/') def hello(): return 'Welcome to My Watchlist!' 填入 app.route() 装饰器的第一个参数是 URL 规则字符串,这里的 / 指的是 根地址。 对应的是主机名后面的路径部分,完整 URL 就是 http://localhost:5000/。如果 我们这里定义的 URL 规则是 /hello ,那么完整 URL 就是 http://localhost:5000/hello 。 整个请求的处理过程如下所示: 1. 当用户在浏览器地址栏访问这个地址,在这里即 http://localhost:5000/ 2. 服务器解析请求,发现请求 URL 匹配的 URL0 码力 | 127 页 | 7.62 MB | 1 年前3
Kubernetes for Edge Computing across
Inter-Continental Haier Production Sitesio/a caicloud.io/b 负载均衡器(LB): • 支持私有云LVS, 公有云SLB • 支持X.509证书 路 由: • Ingress控制器+Nginx • 支持子域名到服务路由 海尔工业互联网 - 微服务之配置管理 配置中心 应用-A 应用-B 应用-C 应用-D 配置中心优势 : • 配置简单 • 易用的用户界面 • 批量动态更新配置到应用 • 编程接口简单 Auth N Auth Z 协议适配: • 提供常用协议服务的接入、转换(Dubbo,XML) • 灵活定制化的数据变换 控制能力: • 认证鉴权机制 • 流量控制 • 黑白名单 • 服务路由 可靠高效: • 分布式,高可用 • 高性能,低延迟 • 线性扩容 海尔工业互联网 –微服务之监控日志 Node PrometheusServer(Pod) Retrieval Storage0 码力 | 33 页 | 4.41 MB | 1 年前3
Apache RocketMQ on Amazon Web ServicesVPC,请注意下列注意事项: • 请确保您在不同可用区中已有⾄少两个公有⼦网和三个私有⼦网。 • 确保 DHCP 选项中开启了域名选项配置集。 • 确保私有⼦网的路由表中存在 NAT 网关或 NAT 实例的路由,使得其拥有出 站 Internet 连接。 • 您必须创建堡垒主机及其关联的安全组以实现⼊站 SSH 访问 快速部署 本文的步骤主要针对在运⾏在由西云数据运营的0 码力 | 18 页 | 1.55 MB | 1 年前3
Serverless Kubernetes - KubeConagent Container Container Kernel Containerd 创建/删除Pod 上报Pod状态 Pod状态逼近 创建/删除SLB 节点绑定、路由规则变更 创建/删除DNS Entry 与云平台深度集成 ECI Viking agent Pod Container Container Containerd 用户VPC0 码力 | 16 页 | 4.25 MB | 1 年前3
Python 标准库参考指南 3.8.20 . . . . . . . . 1108 21.5 urllib --- URL 处理模块 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1117 21.6 urllib.request --- 用于打开 URL 的可扩展库 . . . . . . . . . . . . . . . . . urllib 使用的 Response 类 . . . . . . . . . . . . . . . . . . . . . . . . 1133 21.8 urllib.parse 用于解析 URL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1133 21.9 urllib.error --- urllib DynamicClassAttribute(fget=None, fset=None, fdel=None, doc=None) 在类上访问 __getattr__ 的路由属性。 这是一个描述器,用于定义通过实例与通过类访问时具有不同行为的属性。当实例访问时保持正常 行为,但当类访问属性时将被路由至类的 __getattr__ 方法;这是通过引发 AttributeError 来完成的。 这样就允许有在实例上激活的特征属性,同0 码力 | 1927 页 | 9.69 MB | 9 月前3
共 1000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 100













