dashboard

Ways to share dashboards and reports for users without a PowerBi account and not allowing to share it back

橙三吉。 提交于 2020-02-23 07:40:41
问题 I want to share some PowerBi dashboards to users with no Microsoft/PowerBI account. I know that I can share it in a Sharepoint online but the problem with this solution is the share button (Facebook, Twitter, URL) that we can find at the button of the web page. I don't want users to be able to share the reports on their own. So is there a way to share the reports with free users without allowing them to share them back. Thank you for your help. 回答1: The only way to do this is to embed the

[kubernetes]step9-使用Helm部署 dashboard并设置普通用户登陆权限

北城余情 提交于 2020-02-19 19:16:28
使用Helm部署 dashboard并设置普通用户登陆权限 helm repo update helm fetch stable/kubernetes-dashboard tar zxvf kubernetes-dashboard-1.10.1.tgz cd kubernetes-dashboard 创建kubernetes-dashboard.yaml: image : repository : k8s.gcr.io/kubernetes - dashboard - amd64 tag : v1.10.1 ingress : enabled : true hosts : - k8s.aircourses.com annotations : nginx.ingress.kubernetes.io/ssl-redirect : "true" nginx.ingress.kubernetes.io/backend-protocol : "HTTPS" tls : # https证书的secret需要先自行创建好 - secretName : aircourses hosts : - k8s.aircourses.com rbac : clusterAdminRole : true helm install stable/kubernetes-dashboard -n

Kubernetes Dashboard

心不动则不痛 提交于 2020-02-16 01:28:54
概述 Kubernetes Dashboard 是 Kubernetes 集群的 Web UI,用于管理集群。 安装 GitHub 地址: Kubernetes Dashboard 找到合适Kubernetes 的版本 下载配置文件,实在下载不了可以用迅雷。 wget https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-rc5/aio/deploy/recommended.yaml 修改配置如下 # 省略部分代码... # ------------------- Dashboard Service ------------------- # kind: Service apiVersion: v1 metadata: labels: k8s-app: kubernetes-dashboard name: kubernetes-dashboard namespace: kube-system spec: # 修改类型为 NodePort 访问 type: NodePort ports: - port: 443 targetPort: 8443 # 设置端口号为 30001 nodePort: 30001 selector: k8s-app: kubernetes-dashboard 部署到集群 # 部署

kubernetes dashboard安装

六月ゝ 毕业季﹏ 提交于 2020-02-10 11:20:51
kubernetes dashboard安装 看 kubectl 版本 [root@master home]# kubectl version Client Version: version.Info{Major:"1", Minor:"15", GitVersion:"v1.15.3", GitCommit:"2d3c76f9091b6bec110a5e63777c332469e0cba2", GitTreeState:"clean", BuildDate:"2019-08-19T11:13:54Z", GoVersion:"go1.12.9", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"15", GitVersion:"v1.15.3", GitCommit:"2d3c76f9091b6bec110a5e63777c332469e0cba2", GitTreeState:"clean", BuildDate:"2019-08-19T11:05:50Z", GoVersion:"go1.12.9", Compiler:"gc", Platform:"linux/amd64"} 下载 Dashboard yaml 文件 wget https://raw

[转载]k8s dashboard认证及分级授权

不羁的心 提交于 2020-02-07 02:43:17
k8s dashboard认证及分级授权 Dashboard官方地址: https://github.com/kubernetes/dashboard dashbord是作为一个pod来运行,需要serviceaccount账号来登录。 先给dashboad创建一个专用的认证信息。 先建立私钥: 1 2 3 4 5 [root@master ~]# cd /etc/kubernetes/pki/ [root@master pki]# (umask 077 ; openssl genrsa -out dashboard.key 2048 ) Generating RSA private key, 2048 bit long modulus .............................................................................................................................+++ .................................+++ 建立一个证书签署请求: 1 [root@master pki]# openssl req -new -key dashboard.key -out dashboard.csr -subj "/O=zhixin/CN

8、【Java Web系列】单节点应用监控Hystrix Stream

旧时模样 提交于 2020-02-06 13:09:34
1、在上一篇的基础上添加hystrix dashboard依赖。 implementation 'org.springframework.boot:spring-boot-starter-actuator' implementation 'org.springframework.cloud:spring-cloud-starter-netflix-hystrix-dashboard' 2、启动类添加注解。 @EnableHystrixDashboard 3、输入 http://localhost:8082/actuator 4、启动程序,输入 http://localhost:8082/hystrix 5、输入 http://localhost:8082/actuator/hystrix.stream ,点击Monitor Stream 6、可以使用Turbine进行汇总,但数据没有持久化。 来源: CSDN 作者: 挨踢的小胖 链接: https://blog.csdn.net/i792439187/article/details/104193226

K8S 之 Dashboard安装

 ̄綄美尐妖づ 提交于 2020-02-05 18:58:53
一、Dashboard安装 #在运维主机上运行 k8s-yaml]# docker pull k8scn/kubernetes-dashboard-amd64:v1.8.3 k8s-yaml]# docker images|grep dashboard k8s-yaml]# docker tag fcac9aa03fd6 harbor.od.com/public/dashboard:v1.8.3 k8s-yaml]# docker push test-harbor.cedarhd.com/public/dashboard:v1.8.3 k8s-yaml]# mkdir dashboard k8s-yaml]# cd dashboard/ #创建四个yaml文件 dashboard]# vi rbac.yaml apiVersion: v1 kind: ServiceAccount metadata: labels: k8s-app: kubernetes-dashboard addonmanager.kubernetes.io/mode: Reconcile name: kubernetes-dashboard-admin namespace: kube-system --- apiVersion: rbac.authorization.k8s.io/v1 kind:

Spring Cloud微服务Sentinel+Apollo限流、熔断实战

微笑、不失礼 提交于 2020-02-04 06:14:02
在Spring Cloud微服务体系中,由于限流熔断组件Hystrix开源版本不在维护,因此国内不少有类似需求的公司已经将眼光转向阿里开源的Sentinel框架。而以下要介绍的正是作者最近两个月的真实项目实践过程,这中间被不少网络Demo示例级别水文误导过,为了以正视听特将实践过程加以总结,希望能够帮到有类似需要的朋友! 一、Sentinel概述 在基于Spring Cloud构建的微服务体系中,服务之间的调用链路会随着系统的演进变得越来越长,这无疑会增加了整个系统的不可靠因素。在并发流量比较高的情况下,由于网络调用之间存在一定的超时时间,链路中的某个服务出现宕机都会大大增加整个调用链路的响应时间,而瞬间的流量洪峰则会导致这条链路上所有服务的可用线程资源被打满,从而造成整体服务的不可用,这也就是我们常说的“ 雪崩效应 ”。 而在微服务系统设计的过程中,为了应对这样的糟糕情况,最常用的手段就是进行” 流量控制 “以及对网络服务的调用实现“ 熔断降级 ”。所谓流量控制就是根据服务的承载能力指定一个策略,对一定时间窗口内的网络调用次数进行限制,例如1s内某个服务最多只能处理10个请求,那么1s内的第11+的请求会被被限制丢弃;而熔断降级的概念则是说在A服务→B服务调用过程中,按照一定的规则A服务发现调用B服务经常失败或响应时间过长,如果触发了A服务对B服务调用的熔断降级规则

通过ceph-deploy搭建ceph 13.2.5 mimic

北慕城南 提交于 2020-01-30 07:48:28
一、ceph介绍 操作系统需要内核版本在kernel 3.10+或CentOS7以上版本中部署 通过deploy工具安装简化部署过程,本文中选用的ceph-deploy版本为1.5.39 至少准备6个环境,分别为1个ceph-admin管理节点、3个mon/mgr/mds节点、2个osd节点 二、ceph安装 1. 部署ceph-admin a) 配置主机名,配置hosts文件。 shell> hostnamectl --static set-hostname shyt-ceph-admin shell> cat /etc/hosts 10.52.0.181 shyt-ceph-mon1 10.52.0.182 shyt-ceph-mon2 10.52.0.183 shyt-ceph-mon3 10.52.0.201 shyt-ceph-osd-node1 10.52.0.202 shyt-ceph-osd-node2 b) 生成ssh key文件并复制到各个节点 shell> ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): Enter passphrase (empty for no passphrase):

10.kubernetes danshboard认证及分级授权

强颜欢笑 提交于 2020-01-29 16:11:26
Kubernetes dashbord自身不做认证,认证都是k8s集群来做的。 一、部署 参照官方文档: https://github.com/kubernetes/dashboard [kubelet@master ~]$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v1.10.1/src/deploy/recommended/kubernetes-dashboard.yaml Tips:需要下载下来修改镜像路径,国内不允许访问镜像,可修改为阿里云的镜像仓库地址。registry.cn-shanghai.aliyuncs.com/yingzhuo/kubernetes-dashboard-amd64:v1.10.1 1、部署中修改的地方 避免在安装过程中出错,或者安装后各种各样的问题。如果想一次性安装部署成功,并且能够进入首页,需手动下载kubernetes-dashboard.yaml资源清单,并修改三个地方。 (1)deployment镜像地址 需要下载下来修改镜像路径,国内不允许访问镜像,可修改为阿里云的镜像仓库地址。registry.cn-shanghai.aliyuncs.com/yingzhuo/kubernetes-dashboard-amd64:v1.10.1 (2