如何利用Gzip压缩提高网站加载速度并寻找合适的兼职机会?

摘要:做网站gzip压缩,交三百能在网站上找兼职做的,网站建设 中企动力上海,建设网站公司哪里好测试通过http访问apiServer curl没有证书不能通过https来访问apiServer需要使用kubectl代理 #使用kubectl代理
做网站gzip压缩,交三百能在网站上找兼职做的,网站建设 中企动力上海,建设网站公司哪里好测试通过http访问apiServer curl没有证书不能通过https来访问apiServer需要使用kubectl代理 #使用kubectl代理 kubectl proxy --port8111 #curl访问 api/v1 是资源所属群组/版本 即创建资源时定义的apiVersion #后边跟的是要访问的资源 #查看所有命名空间 #查看核心资源用…测试通过http访问apiServer curl没有证书不能通过https来访问apiServer需要使用kubectl代理 #使用kubectl代理 kubectl proxy --port8111 #curl访问 api/v1 是资源所属群组/版本 即创建资源时定义的apiVersion #后边跟的是要访问的资源 #查看所有命名空间 #查看核心资源用api 其他都用apis/apps curl http://localhost:8111/api/v1/namespaces #查看kube-system命名空间下的所有deployments curl http://localhost:8111/apis/apps/v1/namespaces/kube-system/deployments #查看具体deployment curl http://localhost:8111/apis/apps/v1/namespaces/kube-system/deployments/corednsk8s认证授权分两类 一类是集群外访问apiServer 一类是集群内部资源的认证授权例如对pod.svc等资源 每个pod在创建时 都会有个默认的认证信息 例如 Volumes:kube-api-access-gm7dh:Type: Projected (a volume that contains injected data from multiple sources)TokenExpirationSeconds: 3607ConfigMapName: kube-root-ca.crtConfigMapOptional: nilDownwardAPI: true k8s 默认使用serviceAccount管理权限 serviceAccount本身不对权限管理 只是创建个账号 进行认证 授权是rbac来管理 #创建serviceAccount 加上参数 -o yaml --dry-run 不会执行操作 而是会返回个yaml文件 我们可以在这个文件基础上进行修改方便编辑yaml文件 kubectl create serviceaccount sacc -o yaml --dry-run # 创建serviceAccount apiVersion: v1 kind: ServiceAccount metadata:name: nfs-client-provisionernamespace: default#查看 kubectl get sa对应pod apiVersion: v1 kind: Pod metadata:name: sa-nginx-podnamespace: default spec:containers:- name: nginx-containersimage: docker.io/library/nginxserviceAccountName: ssa-test 查看 kubectl 配置 #查看kubectl 配置 包括连接的集群 账号等 kubectl config viewrbac授权方式 kind: ClusterRole apiVersion: rbac.authorization.k8s.io/v1 metadata:name: cluster-role-test rules:- apiGroups: []resources: [persistentvolumes]verbs: [get, list, watch, create, delete]- apiGroups: []resources: [persistentvolumeclaims]verbs: [get, list, watch, update]- apiGroups: [storage.k8s.io]resources: [storageclasses]verbs: [get, list, watch]- apiGroups: []resources: [events]verbs: [create
阅读全文