k8s简单使用

摘要 0.1 K8S资源类型 Pod Node Namespace Service Volume PersistentVolume Deployment Secret StatefulSet DaemonSet ServiceAccount ReplicationController ReplicaSet Job CronJob SecurityContext ResourceQuota LimitRange HorizontalPodAutoscaling Ingress ConfigMap Label CustomResourceDefinition Role ClusterRole 我将它们简单的分类为以下几种资源对象: 类别 名称 资源对象 Pod、Repl

使用minikube部署k8s

Minikube 是一个易于在本地运行 Kubernetes 的工具,可在你的笔记本电脑上的虚拟机内轻松创建单机版 Kubernetes 集群。便于尝试 Kubernetes 或使用 Kubernetes 日常开发。 1 前置条件 2 CPUs or more 2GB of free memory 20GB

Nexus搭建Maven私服

摘要 1 前置条件jdk 2 安装nexus下载nexus仓库管理器 bash wget https://sonatype-download.global.ssl.fastly.net/repository/repositoryManager/oss/nexus-2.14.8-01-bundle.tar.gz 解压 bash tar -zxf nexus-2.14.3-02-bundle.tar.gz mv nexus-2.14.3-02-bundle /usr/local/nexus 3 配置nexus编辑配置文件 text vi conf/nexus.properties text # Jetty section application-port=8081 # 访问端口 application-host=0.0.0.0

搭建Subversion

0.1 安装 apache 服务 bash apt -y install apache2 检查 apache 是否安装成功 bash systemctl status apache2.service 0.2 安装 svnserve 服务 bash apt -y install subversion 检查 svnserve 是否安装成功 bash svnserve --version 安装 mod_dav_svn mod_dav_svn 是 apache 服务器访问 svn 的一个模块。 bash apt install libapache2-mod-svn 0.3