如何将所有kubernetes ingress yamls转换为使用API版本networking.k8s.io/v1

exdqitrt  于 2023-04-20  发布在  Kubernetes
关注(0)|答案(7)|浏览(177)

Kubernetes Ingress API版本networking.k8s.io/v1在字段wrt extensions/v1 beta1中有很多更改,如下所示:

* `spec.backend` -> `spec.defaultBackend`
* `serviceName` -> `service.name`
* `servicePort` -> `service.port.name` (for string values)
* `servicePort` -> `service.port.number` (for numeric values)
* `pathType` no longer has a default value in v1; "Exact", "Prefix", or "ImplementationSpecific" must be specified

什么是最简单的方法来转换所有ingress yaml文件从扩展名/v1 beta1到networking.k8s.io/v1.
看起来kubectl convert已经在v1.19中被弃用了。
Kubernetes版本:

kubectl version
Client Version: version.Info{Major:"1", Minor:"19", GitVersion:"v1.19.0", GitCommit:"e19964183377d0ec2052d1f1fa930c4d7575bd50", GitTreeState:"clean", BuildDate:"2020-08-26T14:30:33Z", GoVersion:"go1.15", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"19", GitVersion:"v1.19.0", GitCommit:"e19964183377d0ec2052d1f1fa930c4d7575bd50", GitTreeState:"clean", BuildDate:"2020-08-26T14:23:04Z", GoVersion:"go1.15", Compiler:"gc", Platform:"linux/amd64"}

使用kubectl convert时出错:

kubectl convert -f ingress_4_10_1.yaml --output-version  networking.k8s.io/v1
kubectl convert is DEPRECATED and will be removed in a future version.
In order to convert, kubectl apply the object to the cluster, then kubectl get at the desired version.
error: networking.Ingress is not suitable for converting to "networking.k8s.io/v1" in scheme "k8s.io/kubernetes/pkg/api/legacyscheme/scheme.go:30"

我的入口yaml:

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: frontend
  annotations:
   kubernetes.io/ingress.class: "ing-class1"
spec:
  rules:
  - host:  frontend.com
    http:
      paths:
      - path: /web-frontend/frontend.php
        backend:
          serviceName: frontend
          servicePort: 80
ix0qys7i

ix0qys7i1#

在www.example.com中找到了所需更改的详细摘要https://cloud.google.com/kubernetes-engine/docs/deprecations/apis-1-22#ingress-v122
| 领域|变更|
| --------------|--------------|
| spec.backend |重命名为spec. defaultBackend。|
| 后端服务名称|重命名为service.name。|
| 服务端口|数字后端servicePort字段重命名为service. port. number。字符串后端servicePort字段重命名为service.port.name。|
| 路径类型|现在每个指定路径都需要。该值可以是:Prefix、Exact或ImplementationSpecific。要匹配未定义的v1 beta1行为,请使用ImplementationSpecific。|

qlckcl4x

qlckcl4x2#

不用转换,从头开始写可能更容易,使用可以在www.example.com找到的新模式https://kubernetes.io/docs/concepts/services-networking/ingress/#the-ingress-resource。我重写了我的,它工作。希望它有帮助。

db2dz4w8

db2dz4w83#

也许你得到了一个答案,但它可能有助于其他人在未来。以下配置是为我工作。

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: ingress-srv
  annotations:
    kubernetes.io/ingress.class: "nginx"
spec:
  rules:
    - host: addtest.com
      http:
        paths:
          - path: /add
            pathType: Prefix
            backend:
              service:
                name: add-srv
                port:
                  number: 4000
kwvwclae

kwvwclae4#

我写了this GIST to do the work for me。下载它并根据自己的口味进行调整。它超级简单,会根据PyYAML的默认值进行一些意外的重新格式化,但至少在这里它完成了工作。

uqdfh47h

uqdfh47h5#

使用kubectl convert --output-versionnetworking.k8s.io/v1

单个YAML文件

kubectl convert -f app-ingress.yaml --output-version networking.k8s.io/v1 > app-ingress-new.yaml

转换多个文件

k8s-ingress-convert.ps1(Powershell)

Push-Location .

# Without this variable I was seeing
#   Select-String would have file lock (read lock)
#  and rename to -old.yaml would fail.
$ingress_v1beta_list = @(
  Get-ChildItem -Recurse *.y?ml | 
  Where-Object name -NotLike *-old* | 
  Select-String Ingress -List | 
  ForEach-Object { Select-String -LP $_.Path v1beta } |
  ForEach-Object { $_.path } );

$ingress_v1beta_list

foreach ($ki in $ingress_v1beta_list) {
    Set-Location $ki/.. -Verbose
    $kold=$ki.Replace('.yaml','-old.yaml').Replace('.yml','-old.yml');
    Move-Item $ki $kold -Verbose;
    Write-Warning "k8s converting $ki";
    kubectl convert -f $kold --output-version networking.k8s.io/v1 > $ki
}
Pop-Location

正斜杠/路径在Powershell的Win10/Win 11上工作正常。没有测试过,但在Linux和Mac上也可以使用正斜杠。
最好使用git和**.gitignore**

*-old.yaml
*-old.yml
t3psigkw

t3psigkw6#

convert包含不适当的依赖项。convert必须依赖于internal类型(为了转换),但kubectl不应该依赖于这些类型。事实上,API服务器之外的任何软件都不应该依赖于内部类型。弃用计划是将convert创建为插件或单独的二进制文件。因此功能仍然存在;只是不在kubectl中。
可能的选项:
1.开始该高速缓存中存储所有版本。可能意味着回到使用disco。ServerResources()而不是disco。ServerPreferredResources()-查找仍然快速。保证工作,因为我们有对象的所有版本进行查找。
1.使用k8s库而不是kubectl convert找到合适的方法来转换对象
1.使用git config version对K8s API服务器执行GET以执行转换。
看一看:kubectl-convertkubernetes-release-notesconvert-issues

z9smfwbn

z9smfwbn7#

这不是很难重写它的手,例如:

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: frontend
  annotations:
   kubernetes.io/ingress.class: "ing-class1"
spec:
  rules:
  - host: frontend.com
    http:
      paths:
      - backend:
          service:
            name: frontend
            port:
              number: 80
        path: /web-frontend/frontend.php
        pathType: Exact

相关问题