dashboard

Openstack - Change Admin password for the Dashboard

这一生的挚爱 提交于 2019-12-02 01:14:30
问题 Where can I change the Admin Password for the Dasboard in Openstack? I installed openstack with the packstack installer... the password in the keystonerc_admin file doesn't work, too. I use a CentOS 6.3 (and I have access to the config files) username: admin password: admin/password/123/etc. don't work.. 回答1: SOLVED $ export OS_SERVICE_TOKEN=$servicetoken(/etc/keystone/keystone.conf) $ export OS_SERVICE_ENDPOINT=$http://ipoftheserver/v2.0 then use this syntax to change the password $ keystone

What is the proper way to add a custom dashboard “box” in the Magento backend without editing default templates?

折月煮酒 提交于 2019-12-02 01:13:15
I am working on creating what I hope one day will be a publicly available Magento extension (this part I mention because it's important to me that I do the "right thing" here). One of the things I would like to do is add a box in the default Magento dashboard, basically a new "box" exactly like "Top 5 Search Terms" except with my own content. I would like my new custom box to be the last box that is displayed (ideally). The issue that I'm running into is that the template that is responsible for rendering the dashboard calls out specific blocks to be rendered, and these blocks are nested

Ubuntu 18.04 环境下 kubernetes v1.16.2 单机部署说明

二次信任 提交于 2019-12-01 22:45:15
一、安装环境   本次部署使用阿里云ECS    操作系统: Ubuntu 18.04 64位   实例规格: ecs.c6.large 2U4G 二、kubernetes 版本   k8s.gcr.io/kube-apiserver:v1.16.2   k8s.gcr.io/kube-controller-manager:v1.16.2   k8s.gcr.io/kube-scheduler:v1.16.2   k8s.gcr.io/kube-proxy:v1.16.2   k8s.gcr.io/pause:3.1   k8s.gcr.io/etcd:3.3.15-0   k8s.gcr.io/coredns:1.6.2 三、shell # 添加镜像源 cat <<EOF >/etc/apt/sources.list.d/docker-k8s.list deb https://mirrors.aliyun.com/kubernetes/apt/ kubernetes-xenial main deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable EOF # 更新并安装 apt update && apt install -y docker-ce

Openstack - Change Admin password for the Dashboard

試著忘記壹切 提交于 2019-12-01 22:01:01
Where can I change the Admin Password for the Dasboard in Openstack? I installed openstack with the packstack installer... the password in the keystonerc_admin file doesn't work, too. I use a CentOS 6.3 (and I have access to the config files) username: admin password: admin/password/123/etc. don't work.. SOLVED $ export OS_SERVICE_TOKEN=$servicetoken(/etc/keystone/keystone.conf) $ export OS_SERVICE_ENDPOINT=$http://ipoftheserver/v2.0 then use this syntax to change the password $ keystone user-password-update --pass <password> <user id> openstack user password set --password <new-password> -

kubeadm安装kubernetes 1.16.2

▼魔方 西西 提交于 2019-12-01 19:04:25
目录 简介 环境说明 安装 准备基础环境 安装docker 安装kubeadm、kubelet、kubectl 配置kubeadm-config.yaml 部署master 安装flannel网络插件 添加节点 安装dashboard 部署ingress 重置集群 简介 当前kubernetes的最新版本已经到了1.16,而kubernetes官方推出的安装工具kubeadm也已经GA。本文就基于kubeadm来安装最新的kubernetes集群。 各组件示意图如下: 环境说明 部署环境: 主机名 ip地址 节点类型 系统版本 master.example.com 192.168.0.1 master、etcd centos7 node1.example.com 192.168.0.2 node centos7 相关组件版本说明: 组件 版本 说明 kubernetes 1.16.2 主程序 docker 19.03.3 容器 flannel 0.11.0 网络插件 etcd 3.3.15 数据库 coredns 1.6.2 dns组件 kubernetes-dashboard 2.0.0-beta5 web界面 ingress-nginx 0.26.1 ingress 安装 安装步骤说明: 配置主机名、防火墙、yum源 配置内核参数 加载内核模块 安装Docker

十三,k8s集群web端管理工具dashboard部署

别等时光非礼了梦想. 提交于 2019-12-01 17:34:08
目录 部署 dashboard 由于会被墙, 所以要加一步拉取镜像 正式开始安装dashboard 查看 开放访问 配置dashboard用户 1. token 令牌认证 创建一个 serviceAccount dashboard-admin 绑定 clusterbinding 的 sa 获取 serviceaccount 的 dashboard-admin 的secret信息 2. kubeconfig 文件认证 创建一个 serviceAccount 创建 rolebinding 绑定 def-ns-admin 创建集群和创建kubeconfig配置文件 拿到 def-ns-admin 用户的base64格式的token 设置 set-credentials 保存至 def-ns-admin.conf 配置 def-ns-admin.conf 上下文 配置当前上下文 测试使用kubeconfig文件登陆 基于 tls 验证 创建 dashboard 专用的 tls 证书 生成dashboard 用户的私钥 生成证书签署请求 给dashboard证书签证 创建 dashboard 对应的 secret Dashboard部署总结: 部署 dashboard 官方文档地址 由于会被墙, 所以要加一步拉取镜像 docker pull registry.cn-hangzhou

Not able to login to kubernetes dashboard from hhtp url since local host of the master is a vm

元气小坏坏 提交于 2019-12-01 12:53:15
问题 i need create an https url from my dash board using kubectl proxy is only generating http url how to create an https url what command should we run for that token is grtting generated but not login dashboards stays static with no response on entering the token 回答1: You can expose your kubernetes-dashboard service via NodePort. To achieve this, the simplest way would be to edit the current kubernetes-dashboard service configuration and change ClusterIP parameter to NodePort : kubectl edit

10分钟搭建Kubernetes容器集群平台(kubeadm)

让人想犯罪 __ 提交于 2019-12-01 07:48:43
官方提供Kubernetes部署3种方式 minikube Minikube是一个工具,可以在本地快速运行一个单点的Kubernetes,尝试Kubernetes或日常开发的用户使用。不能用于生产环境。 官方文档: https://kubernetes.io/docs/setup/minikube/ kubeadm kubeadm可帮助你快速部署一套kubernetes集群。kubeadm设计目的为新用户开始尝试kubernetes提供一种简单的方法。目前是Beta版。 官方文档: https://kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm/ https://kubernetes.io/docs/setup/independent/install-kubeadm/ 二进制包 从官方下载发行版的二进制包,手动部署每个组件,组成Kubernetes集群。目前企业生产环境中主要使用该方式。 下载地址: https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.11.md#v1113 1. 安装要求 操作系统 Ubuntu 16.04+ Debian 9 CentOS 7 RHEL 7 Fedora 25/26 (best-effort) 其他

frp基础操作

大憨熊 提交于 2019-12-01 07:26:31
[common] privilege_token = **** bind_port = 7000 dashboard_user = 444444 dashboard_pwd = ***** dashboard_port = 7500 ================================= [common] privilege_token = **** server_addr = ***.***.***.*** server_port = 7000 [ssh] type = tcp local_ip = 127.0.0.1 local_port = 3389 remote_port = 7001 来源: https://www.cnblogs.com/nocanstillbb/p/11668782.html

Kubernetes web界面kubernetes-dashboard安装【h】

心不动则不痛 提交于 2019-12-01 05:01:53
本文讲述的是如何部署K8s的web UI,前提是已经有一个k8s集群后,按照如下步骤进行即可。(如下步骤都是在master节点上进行操作) 1、下载kubernetes-dashboard.yaml文件 wget https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/recommended/kubernetes-dashboard.yaml 2、修改kubernetes-dashboard.yaml文件 # ------------------- Dashboard Deployment ------------------- # kind: Deployment apiVersion: apps/v1beta2 metadata: labels: k8s-app: kubernetes-dashboard name: kubernetes-dashboard namespace: kube-system spec: replicas: 1 revisionHistoryLimit: 10 selector: matchLabels: k8s-app: kubernetes-dashboard template: metadata: labels: k8s-app: kubernetes