mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-09-25 18:10:59 +02:00
Revert "Merge branch 'rc' into mrozentsvayg/cloudflare-custom-hostname"
This reverts commit e91df7779390942774c70079add77a4ff18638e2, reversing changes made to 880220a2b6c801c4d4cea52ca858527426555e36.
This commit is contained in:
parent
e91df77793
commit
9e8ad89071
4
.github/workflows/ci.yaml
vendored
4
.github/workflows/ci.yaml
vendored
@ -2,9 +2,9 @@ name: Go
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master, rc ]
|
branches: [ master ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master, rc ]
|
branches: [ master ]
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read # to fetch code (actions/checkout)
|
contents: read # to fetch code (actions/checkout)
|
||||||
|
4
.github/workflows/codeql-analysis.yaml
vendored
4
.github/workflows/codeql-analysis.yaml
vendored
@ -2,10 +2,10 @@ name: "CodeQL analysis"
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master, rc ]
|
branches: [ master]
|
||||||
pull_request:
|
pull_request:
|
||||||
# The branches below must be a subset of the branches above
|
# The branches below must be a subset of the branches above
|
||||||
branches: [ master, rc ]
|
branches: [ master ]
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '35 13 * * 5'
|
- cron: '35 13 * * 5'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
1
.github/workflows/gh-workflow-approve.yaml
vendored
1
.github/workflows/gh-workflow-approve.yaml
vendored
@ -7,7 +7,6 @@ on:
|
|||||||
- synchronize
|
- synchronize
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
- rc
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
approve:
|
approve:
|
||||||
|
4
.github/workflows/json-yaml-validate.yml
vendored
4
.github/workflows/json-yaml-validate.yml
vendored
@ -1,9 +1,9 @@
|
|||||||
name: json-yaml-validate
|
name: json-yaml-validate
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master, rc ]
|
branches: [ master ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master, rc ]
|
branches: [ master ]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
|
4
.github/workflows/lint.yaml
vendored
4
.github/workflows/lint.yaml
vendored
@ -1,10 +1,8 @@
|
|||||||
name: Lint
|
name: Lint
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches: [ master, rc ]
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master, rc ]
|
branches: [ master ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
|
3
.github/workflows/release-chart.yaml
vendored
3
.github/workflows/release-chart.yaml
vendored
@ -4,7 +4,6 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
- rc
|
|
||||||
paths:
|
paths:
|
||||||
- "charts/external-dns/Chart.yaml"
|
- "charts/external-dns/Chart.yaml"
|
||||||
|
|
||||||
@ -14,7 +13,7 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: write # to push chart release and create a release (helm/chart-releaser-action)
|
contents: write # to push chart release and create a release (helm/chart-releaser-action)
|
||||||
|
|
||||||
if: github.repository == 'conduitxyz/external-dns'
|
if: github.repository == 'kubernetes-sigs/external-dns'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
|
4
.github/workflows/staging-image-tester.yaml
vendored
4
.github/workflows/staging-image-tester.yaml
vendored
@ -2,9 +2,9 @@ name: Build all images
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master, rc ]
|
branches: [ master ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master, rc ]
|
branches: [ master ]
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read # to fetch code (actions/checkout)
|
contents: read # to fetch code (actions/checkout)
|
||||||
|
2
Makefile
2
Makefile
@ -105,7 +105,7 @@ build.push/multiarch: ko
|
|||||||
KO_DOCKER_REPO=${IMAGE} \
|
KO_DOCKER_REPO=${IMAGE} \
|
||||||
VERSION=${VERSION} \
|
VERSION=${VERSION} \
|
||||||
ko build --tags ${VERSION} --bare --sbom ${IMG_SBOM} \
|
ko build --tags ${VERSION} --bare --sbom ${IMG_SBOM} \
|
||||||
--image-label org.opencontainers.image.source="https://github.com/conduitxyz/external-dns" \
|
--image-label org.opencontainers.image.source="https://github.com/kubernetes-sigs/external-dns" \
|
||||||
--image-label org.opencontainers.image.revision=$(shell git rev-parse HEAD) \
|
--image-label org.opencontainers.image.revision=$(shell git rev-parse HEAD) \
|
||||||
--platform=${IMG_PLATFORM} --push=${IMG_PUSH} .
|
--platform=${IMG_PLATFORM} --push=${IMG_PUSH} .
|
||||||
|
|
||||||
|
@ -11,17 +11,15 @@ keywords:
|
|||||||
- dns
|
- dns
|
||||||
- service
|
- service
|
||||||
- ingress
|
- ingress
|
||||||
home: https://github.com/conduitxyz/external-dns/
|
home: https://github.com/kubernetes-sigs/external-dns/
|
||||||
icon: https://github.com/conduitxyz/external-dns/raw/master/docs/img/external-dns.png
|
icon: https://github.com/kubernetes-sigs/external-dns/raw/master/docs/img/external-dns.png
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/conduitxyz/external-dns/
|
- https://github.com/kubernetes-sigs/external-dns/
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: stevehipwell
|
- name: stevehipwell
|
||||||
email: steve.hipwell@gmail.com
|
email: steve.hipwell@gmail.com
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: changed
|
|
||||||
description: "Updated _ExternalDNS_ image repo to ghcr.io/conduitxyz/external-dns"
|
|
||||||
- kind: added
|
- kind: added
|
||||||
description: "Added `transportservers` resource to ClusterRole when specifying `f5-transportserver` or `f5-virtualserver` as a source."
|
description: "Added `transportservers` resource to ClusterRole when specifying `f5-transportserver` or `f5-virtualserver` as a source."
|
||||||
- kind: fixed
|
- kind: fixed
|
||||||
|
Loading…
x
Reference in New Issue
Block a user