小编Sky*_*ade的帖子

部署 Web UI 时出现“ClusterRoleBinding”kubernetes-dashboard”无效:roleRef: Invalid value”

我正在尝试按照此处所述部署 Kubernetes Web UI:https ://kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/

我的系统配置如下:

$ uname -a
Linux debian 4.19.0-6-amd64 #1 SMP Debian 4.19.67-2+deb10u2 (2019-11-11) x86_64 GNU/Linux

$ /usr/bin/qemu-system-x86_64 --version
QEMU emulator version 3.1.0 (Debian 1:3.1+dfsg-8+deb10u3)
Copyright (c) 2003-2018 Fabrice Bellard and the QEMU Project developers

$ minikube version
minikube version: v1.5.2
commit: 792dbf92a1de583fcee76f8791cff12e0c9440ad-dirty

$ kubectl version
Client Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.3", GitCommit:"b3cbbae08ec52a7fc73d334838e18d17e8512749", GitTreeState:"clean", BuildDate:"2019-11-13T11:23:11Z", GoVersion:"go1.12.12", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.2", GitCommit:"c97fe5036ef3df2967d086711e6c0c405941e14b", GitTreeState:"clean", BuildDate:"2019-10-15T19:09:08Z", GoVersion:"go1.12.10", Compiler:"gc", Platform:"linux/amd64"}
Run Code Online (Sandbox Code Playgroud)

启动 minukube 集群后,minikube start我创建了一个服务帐户和 ClusterRoleBinding,如下所述:https …

linux docker kubernetes

9
推荐指数
3
解决办法
6511
查看次数

如何在asp.net中回页后保持页面滚动位置

<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="Server">
    <meta http-equiv="refresh" content="4" />   
 <script type="text/javascript">

    var xPos1, yPos1;

    var prm = Sys.WebForms.PageRequestManager.getInstance();
    prm.add_pageLoading(pageLoadingHandler);
    prm.add_pageLoaded(pageLoaded);
    function pageLoaded(sender, args) {

        $get('<%=Panel_Users.ClientID %>').scrollLeft = xPos1;
        $get('<%=Panel_Users.ClientID %>').scrollTop = yPos1;
    }
    function pageLoadingHandler(sender, args) {
        xPos1 = $get('<%=Panel_Users.ClientID %>').scrollLeft
        yPos1 = $get('<%=Panel_Users.ClientID %>').scrollTop;
    }
    </script>
</asp:Content>
Run Code Online (Sandbox Code Playgroud)

不起作用,我哪里出错了

    <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true"  />    

<div style="height: 504px; width: 941px;">
                 <asp:Panel runat="server" ID="Panel_Users" ScrollBars="Auto" Style="z-index: 1; left: 748px;
                     top: 621px; position: absolute; height: 250px; width: 287px">
                     <asp:UpdatePanel UpdateMode="Conditional" ID="UpdatePanel1" runat="server">
                         <ContentTemplate>
                             <asp:GridView …
Run Code Online (Sandbox Code Playgroud)

javascript c# asp.net ajax

8
推荐指数
2
解决办法
7万
查看次数

在哪里获取已知存储库的列表,例如 @bazel_tools、@rules_jvm_external 等?

有时我会看到从互联网或内置扩展加载。规范示例:

load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
Run Code Online (Sandbox Code Playgroud)

但是,我无法通过查看load表达式来区分本地存储库和已知存储库。

如何检查在 WORKSPACE/BUILD 文件中看到的任何存储库的源(位置)?

bazel

8
推荐指数
1
解决办法
3642
查看次数

带有构建器模式的"dynamic"关键字隐藏了扩展方法

我最近遇到了dynamic关键字的奇怪行为,而我正在测试一些东西.这不是我迫切需要解决的问题,因为我只是在尝试,但我想知道是否有人可以透露正在发生的事情

我有一个构建器,它返回一个HttpWebRequest对象和一个扩展方法HttpWebRequest.

我的一个构建器方法需要string参数.当我将构建器方法传递给字符串时,整个过程都有效,但我传递了一个dynamic变量,该变量是一个不再有效的字符串.

看起来好像返回类型的构建器方法HttpWebRequestBuilder现在返回dynamic.

下面的代码很简单,可以重现它,也可以在这里找到

注意

要使其工作,请注释掉该行.SetBody(dynamicString)并取消注释该行.SetBody(json).

public class Program
{
    public static void Main()
    {
        dynamic dynamicString = "{ \"test\" : \"value\" }";
        string json = "{ \"test\" : \"value\" }";

        string test = new HttpWebRequestBuilder()
            .SetRequestType()
            //.SetBody(json) //uncomment this and it works
            .SetBody(dynamicString) //uncomment this and it breaks
            .Build()
            .ExtensionMethod();

        Console.WriteLine(test);
    }

}

public class HttpWebRequestBuilder
{
    private readonly …
Run Code Online (Sandbox Code Playgroud)

.net c# extension-methods dynamic

6
推荐指数
1
解决办法
119
查看次数

如何读取Dockerfile中的Powershell变量?

我正在为 Windows 镜像构建 Docker Desktop。我尝试将变量传递给 Powershell 命令,但它不起作用。

Dockerfile

# escape=`
FROM microsoft/windowsservercore

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

RUN $someVar="2.60.3" ; echo $someVar
Run Code Online (Sandbox Code Playgroud)

Docker 构建

Sending build context to Docker daemon  2.048kB
Step 1/3 : FROM microsoft/windowsservercore
 ---> 2c42a1b4dea8
Step 2/3 : SHELL powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';
 ---> Using cache
 ---> ebd40122e316
Step 3/3 : RUN $someVar="2.60.3" ; echo $someVar
 ---> Running in dd28b74bdbda
 ---> 94e17242f6da
Removing intermediate container dd28b74bdbda
Successfully …
Run Code Online (Sandbox Code Playgroud)

powershell docker docker-for-windows docker-desktop

3
推荐指数
1
解决办法
5126
查看次数

如何使用 SQL 从数据库中检索不同范围的值?

我目前正在尝试使用 ajax 饼图工具检索光值并将它们分类为饼图。我真的需要 SQL 语句的帮助来检索和计算不同的值集。

这是我要检索的 3 组值:

1) 检索和计数小于 24 的 lightValues

2) 检索和计数介于 24 和 30 之间的 lightValues

3) 检索和计数大于 30 的 lightValues

饼图是我想要达到的结果。目前我正在使用原始数据来显示我想要实现的目标。

饼图的图像:

在此处输入图片说明

数据库图像:

在此处输入图片说明

sql t-sql sql-server

0
推荐指数
1
解决办法
73
查看次数