gpt4 book ai didi

kubernetes - 外部 DNS EKS AWS

转载 作者:行者123 更新时间:2023-12-02 11:47:16 24 4
gpt4 key购买 nike

[AWS EKS 1.13]

我正在尝试按照此处所述设置外部 DNS:

https://github.com/kubernetes-incubator/external-dns/blob/master/docs/tutorials/aws.md

我想在命名空间中设置它,这里是代码:

---
apiVersion: v1
kind: ServiceAccount
metadata:
name: external-dns
namespace: qa
---
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRole
metadata:
name: external-dns
rules:
- apiGroups: [""]
resources: ["services"]
verbs: ["get","watch","list"]
- apiGroups: [""]
resources: ["pods"]
verbs: ["get","watch","list"]
- apiGroups: ["extensions"]
resources: ["ingresses"]
verbs: ["get","watch","list"]
- apiGroups: [""]
resources: ["nodes"]
verbs: ["list"]
---
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding
metadata:
name: external-dns-viewer
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: external-dns
subjects:
- kind: ServiceAccount
name: external-dns
namespace: qa
---

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: external-dns
namespace: qa
spec:
strategy:
type: Recreate
template:
metadata:
labels:
app: external-dns
spec:
serviceAccountName: external-dns
containers:
- name: external-dns
image: registry.opensource.zalan.do/teapot/external-dns:latest
args:
- --source=service
- --source=ingress
- --domain-filter=xxxxxx.domain.com
- --provider=aws
- --policy=sync
- --aws-zone-type=public
- --registry=txt
- --txt-owner-id=xxxxxxx

不幸的是,这不起作用,pod 的状态是“CrashLoopBackOff”

这是 pod 的日志:

time="2019-07-15T21:07:22Z" level=info msg="config: {Master: KubeConfig: RequestTimeout:30s IstioIngressGatewayServices:[istio-system/istio-ingressgateway] Sources:[service ingress] Namespace: AnnotationFilter: FQDNTemplate: CombineFQDNAndAnnotation:false IgnoreHostnameAnnotation:false Compatibility: PublishInternal:false PublishHostIP:false ConnectorSourceServer:localhost:8080 Provider:aws GoogleProject: DomainFilter:[xxxx] ExcludeDomains:[] ZoneIDFilter:[] AlibabaCloudConfigFile:/etc/kubernetes/alibaba-cloud.json AlibabaCloudZoneType: AWSZoneType:public AWSZoneTagFilter:[] AWSAssumeRole: AWSBatchChangeSize:1000 AWSBatchChangeInterval:1s AWSEvaluateTargetHealth:true AWSAPIRetries:3 AzureConfigFile:/etc/kubernetes/azure.json AzureResourceGroup: CloudflareProxied:false CloudflareZonesPerPage:50 RcodezeroTXTEncrypt:false InfobloxGridHost: InfobloxWapiPort:443 InfobloxWapiUsername:admin InfobloxWapiPassword: InfobloxWapiVersion:2.3.1 InfobloxSSLVerify:true InfobloxView: InfobloxMaxResults:0 DynCustomerName: DynUsername: DynPassword: DynMinTTLSeconds:0 OCIConfigFile:/etc/kubernetes/oci.yaml InMemoryZones:[] PDNSServer:http://localhost:8081 PDNSAPIKey: PDNSTLSEnabled:false TLSCA: TLSClientCert: TLSClientCertKey: Policy:sync Registry:txt TXTOwnerID:ZTZ2FLS733BGN TXTPrefix: Interval:1m0s Once:false DryRun:false LogFormat:text MetricsAddress::7979 LogLevel:info TXTCacheInterval:0s ExoscaleEndpoint:https://api.exoscale.ch/dns ExoscaleAPIKey: ExoscaleAPISecret: CRDSourceAPIVersion:externaldns.k8s.io/v1alpha1 CRDSourceKind:DNSEndpoint ServiceTypeFilter:[] CFAPIEndpoint: CFUsername: CFPassword: RFC2136Host: RFC2136Port:0 RFC2136Zone: RFC2136Insecure:false RFC2136TSIGKeyName: RFC2136TSIGSecret: RFC2136TSIGSecretAlg: RFC2136TAXFR:false NS1Endpoint: NS1IgnoreSSL:false TransIPAccountName: TransIPPrivateKeyFile:}"
time="2019-07-15T21:07:22Z" level=fatal msg="invalid configuration: no configuration has been provided"

但是,如果我在默认命名空间中部署完全相同的代码,则不会出现任何问题。

有什么帮助吗?

谢谢

最佳答案

invalid configuration: no configuration has been provided 位来自尝试在没有显式配置的情况下构建 Kube 客户端配置。如果未提供显式配置,它会尝试使用集群内的默认 API 服务器位置进行猜测。如果猜测失败,则显示此错误消息。

如果出现以下情况,此默认配置可能会失败:

  1. 您使用的是非标准配置(不同的 apiserver URL?)
  2. Pod 和 API Server 之间存在网络问题
  3. RBAC 配置不当

假设您已经添加了 ServiceAccount、ClusterRole、ClusterRoleBinding 等,这看起来像 Terraform 提供程序 has failed to mount the ServiceAccount secret .

目前,您似乎必须手动安装 key (有关更多信息,请参阅链接):

resource "kubernetes_service_account" "foo" {
name = "foo"
}
resource "kubernetes_deployment" "foo" {
...
spec {
...
template {
...
spec {
# Normally, this is what you should do:
#service_account_name = "${kubernetes_service_account.foo.name}"

volume {
name = "${kubernetes_service_account.foo.default_secret_name}"
secret {
secret_name = "${kubernetes_service_account.foo.default_secret_name}"
}
}
...
container {
...
volume_mount {
name = "${kubernetes_service_account.foo.default_secret_name}"
mount_path = "/var/run/secrets/kubernetes.io/serviceaccount"
read_only = true
}
}
}
}
}
}

关于kubernetes - 外部 DNS EKS AWS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57047243/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com