Aug 21, 2022 1 min read 系统运维 CI/CD系列之 Jenkins [4] - Shared library 使用案例 jenkins的Shared library功能, 也是我们最为常见的一种配置方式,它可以在多个项目之间共享流水线,同时减少冗余的配置--固定好流水执行阶段,我们只需传入几个参数就可以愉快地玩耍了。GitHub - vqiu/jenkins-global-shared-libray: jenkins Shared library 使用案例jenkins Shared library 使用案例. Contribute to vqiu/jenkins-global-shared-libray development by creating an account on GitHub.GitHubvqiu参考引用 [1] https://www.jenkins.io/zh/doc/book/pipeline/shared-libraries/
Dec 30 OpenSSL 生成国密SM2密钥对 要点:openssl 的版本必须为1.1.1+ 查看openssl 是否支持SM2 # openssl ecparam -list_curves | grep SM2 如果有输出就说明支持。 生成 CA 密钥对生成CA私钥 # openssl ecparam -genkey Dec 30, 2024 1 min read
Dec 08 NFS服务端安全策略 背景环境检测 查看NFS配置,已经配置ACL # cat /etc/exports /.nfs-fileshare 10.10.88.48/32(rw,async,crossmnt,insecure,fsid=0,no_auth_ Dec 8, 2024 1 min read
Nov 25 Proxmox VE备份策略 虚拟备份#!/usr/bin/env bash # 描述: Proxmox 虚拟机备份脚本,并实现自动清理 set -e KEEPDAYS=3 NAME="snapshot-$(date +%Y-%m-%d_%H-% Nov 25, 2024 1 min read