存储
SC(StorageClass) 回收策略reclaimPolicy: 1. Delete(删除):当PVC被删除时,底层的PV将被自动删除。 2. Retain(保留):当PVC被删除时,底层的PV将被保留,不会被自动删除。你可以手动处理底层PV,例如重新绑定到其他PVC上。 3. Recycle(回收):当PVC被删除时,底层的PV将被清理并准备好重新使用。这通常涉及删除PV上的数据,...
SC(StorageClass) 回收策略reclaimPolicy: 1. Delete(删除):当PVC被删除时,底层的PV将被自动删除。 2. Retain(保留):当PVC被删除时,底层的PV将被保留,不会被自动删除。你可以手动处理底层PV,例如重新绑定到其他PVC上。 3. Recycle(回收):当PVC被删除时,底层的PV将被清理并准备好重新使用。这通常涉及删除PV上的数据,...
1. 网络监控 TCPBBR 2. 链路追踪 特性 Jaeger SkyWalking 主要用途 分布式追踪、调用链分析 综合 APM 监控,包含追踪、日志、指标监控 核心功能 分布式追踪、性能瓶颈分析、根因分析 ...
version: "3.3" services: freeipa: image: freeipa/freeipa-server:centos-7-4.6.8 domainname: freeipa.xtrfr.cn container_name: freeipa-server ports: - "80:80/tcp" - "443:...
set wrap set expandtab set tabstop=4 set shiftwidth=4 set softtabstop=4 set autoindent set backspace=indent,eol,start set incsearch set ignorecase set smartcase set hlsearch set scrolloff=5 set fo...
注意 在Ubuntu 18上,没有官方的apt软件包来安装Python 3.9。您可以尝试使用其他方法来安装Python 3.9,例如使用源代码编译的方式 下载源码 wget https://www.python.org/ftp/python/3.9.0/Python-3.9.0.tgz 解压+编译安装 1. 安装前依赖 apt install build-essential zli...
下载 https://github.com/docker/compose/releases 安装 version="2.19.0" curl -L "https://github.com/docker/compose/releases/download/${version}/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin...
脚本 #!/bin/bash # 检查用户是否为root,因为设置防火墙需要root权限 if [ "$(id -u)" != "0" ]; then echo "请以root用户身份运行此脚本。" exit 1 fi # check iptables tools which iptables if [ $? -ne 0 ]; then echo "iptable...
#!/bin/bash # 检查用户是否为root,因为设置防火墙需要root权限 if [ "$(id -u)" != "0" ]; then echo "请以root用户身份运行此脚本。" exit 1 fi # check iptables tools which iptables if [ $? -ne 0 ]; then echo "iptables is...
#!/bin/bash # check iptables tools which iptables if [ $? -ne 0 ]; then echo "iptables is not support!" exit 1 fi #----------------------<Set Variable>-------------------- IPT='/sbin/...
server { listen 80; server_name jenkins.ainlu.me; access_log /var/log/nginx/jenkins.ainlu.me_access.log reports; error_log /var/log/nginx/jenkins.ainlu.me_error.log; location / ...