forked from kubernetes-sigs/external-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into docs_apps/v1_deployment
- Loading branch information
Showing
131 changed files
with
4,354 additions
and
1,282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Add 'docs' to any changes within 'docs' folder or any subfolders | ||
docs: | ||
- docs/**/* | ||
|
||
# Add 'provider/alibaba' in file which starts with alibaba | ||
provider/alibaba: provider/alibaba* | ||
|
||
# Add 'provider/aws' in file which starts with aws | ||
provider/aws: provider/aws* | ||
|
||
# Add 'provider/azure' in file which starts with azure | ||
provider/azure: provider/azure* | ||
|
||
# Add 'provider/cloudflare' in file which starts with cloudflare | ||
provider/cloudflare: provider/cloudflare* | ||
|
||
# Add 'provider/coredns' in file which starts with coredns | ||
provider/coredns: provider/coredns* | ||
|
||
# Add 'provider/designate' in file which starts with designate | ||
provider/designate: provider/designate* | ||
|
||
# Add 'provider/digitalocean' in file which starts with digitalocean | ||
provider/digitalocean: provider/digital_ocean* | ||
|
||
# Add 'provider/dnssimple' in file which starts with dnssimple | ||
provider/dnssimple: provider/dnssimple* | ||
|
||
# Add 'provider/dyn' in file which starts with dyn | ||
provider/dyn: provider/dyn* | ||
|
||
# Add 'provider/exoscale' in file which starts with exoscale | ||
provider/exoscale: provider/exoscale* | ||
|
||
# Add 'provider/transip' in file which starts with transip | ||
provider/transip: provider/transip* | ||
|
||
# Add 'provider/rfc2136' in file which starts with rfc2136 | ||
provider/rfc2136: provider/rfc2136* | ||
|
||
# Add 'provider/rdns' in file which starts with rdns | ||
provider/rdns: provider/rdns* | ||
|
||
# Add 'provider/powerdns' in file which starts with pdns | ||
provider/powerdns: provider/pdns* | ||
|
||
# Add 'provider/google' in file which starts with google | ||
provider/google: provider/google* | ||
|
||
# Add 'provider/infoblox' in file which starts with infoblox | ||
provider/infoblox: provider/infoblox* | ||
|
||
# Add 'provider/linode' in file which starts with linode | ||
provider/linode: provider/linode* | ||
|
||
# Add 'provider/ns1' in file which starts with ns1 | ||
provider/ns1: provider/ns1* | ||
|
||
# Add 'provider/oci' in file which starts with oci | ||
provider/oci: provider/oci* | ||
|
||
# Add 'provider/vinyldns' in file which starts with vinyldns | ||
provider/vinyldns: provider/vinyldns* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
# builder image | ||
FROM golang:1.13 as builder | ||
|
||
WORKDIR /github.com/kubernetes-incubator/external-dns | ||
WORKDIR /sigs.k8s.io/external-dns | ||
|
||
COPY . . | ||
RUN go mod vendor && \ | ||
|
@@ -29,7 +29,7 @@ LABEL maintainer="Team Teapot @ Zalando SE <[email protected]>" | |
RUN apk add --no-cache ca-certificates && \ | ||
update-ca-certificates | ||
|
||
COPY --from=builder /github.com/kubernetes-incubator/external-dns/build/external-dns /bin/external-dns | ||
COPY --from=builder /sigs.k8s.io/external-dns/build/external-dns /bin/external-dns | ||
|
||
# Run as UID for nobody since k8s pod securityContext runAsNonRoot can't resolve the user ID: | ||
# https://github.com/kubernetes/kubernetes/issues/40958 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# See https://cloud.google.com/cloud-build/docs/build-config | ||
timeout: 1200s | ||
steps: | ||
- name: "gcr.io/k8s-testimages/gcb-docker-gcloud:v20190906-745fed4" | ||
entrypoint: make | ||
env: | ||
- DOCKER_CLI_EXPERIMENTAL=enabled | ||
- TAG=$_GIT_TAG | ||
args: | ||
- release.staging | ||
substitutions: | ||
# _GIT_TAG will be filled with a git-based tag for the image, of the form vYYYYMMDD-hash, and | ||
# can be used as a substitution | ||
_GIT_TAG: "12345" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,8 +60,3 @@ spec: | |
type: integer | ||
type: object | ||
version: v1alpha1 | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.