Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebase to upstream v0.13.1 #46

Merged
merged 180 commits into from
Nov 14, 2022
Merged

Commits on Feb 17, 2022

  1. Configuration menu
    Copy the full SHA
    58ae184 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2022

  1. Included githubactions in dependabot config

    - Included githubactions in the dependabot config
    
    This should help with keeping the GitHub actions updated on new releases. This will also help with keeping it secure.
    
    Dependabot helps in keeping the supply chain secure https://docs.github.com/en/code-security/dependabot
    
    GitHub actions up to date https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
    
    https://github.com/ossf/scorecard/blob/main/docs/checks.md#dependency-update-tool
    
    Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
    naveensrinivasan committed Apr 1, 2022
    Configuration menu
    Copy the full SHA
    6a5f639 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2022

  1. Configuration menu
    Copy the full SHA
    692f2bb View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2022

  1. feat!: handle IP address comparison

    Previously there was no distinction between an IP address and any other string
    when doing a comparison to determine which is "less" when determining which endpoint to actually create.
    
    This explicitly handles IP addresses and will always prefer
    them over non-IP addresses when determining which of two targets is less.
    wbh1 committed Apr 20, 2022
    Configuration menu
    Copy the full SHA
    0c8f6a6 View commit details
    Browse the repository at this point in the history
  2. Bump to go 1.18

    Required for net/netip package
    wbh1 committed Apr 20, 2022
    Configuration menu
    Copy the full SHA
    3163457 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2022

  1. Configuration menu
    Copy the full SHA
    a4e0b54 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4add443 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fc3f630 View commit details
    Browse the repository at this point in the history
  4. Revert order

    luke-plausin-kidsloop committed May 13, 2022
    Configuration menu
    Copy the full SHA
    c623580 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c01c7fe View commit details
    Browse the repository at this point in the history

Commits on May 14, 2022

  1. gke refresh

    darkn3rd committed May 14, 2022
    Configuration menu
    Copy the full SHA
    7342285 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2022

  1. Configuration menu
    Copy the full SHA
    0da9640 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2022

  1. Configuration menu
    Copy the full SHA
    d179cff View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    73e657d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    61a7c7b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    deb2b6e View commit details
    Browse the repository at this point in the history
  5. Link to hostPort tutorial

    acj committed May 23, 2022
    Configuration menu
    Copy the full SHA
    b00c519 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    43525cd View commit details
    Browse the repository at this point in the history

Commits on May 26, 2022

  1. Bump github.com/Azure/go-autorest/autorest/adal from 0.9.16 to 0.9.20

    Bumps [github.com/Azure/go-autorest/autorest/adal](https://github.com/Azure/go-autorest) from 0.9.16 to 0.9.20.
    - [Release notes](https://github.com/Azure/go-autorest/releases)
    - [Changelog](https://github.com/Azure/go-autorest/blob/master/CHANGELOG.md)
    - [Commits](Azure/go-autorest@autorest/adal/v0.9.16...autorest/adal/v0.9.20)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/Azure/go-autorest/autorest/adal
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 26, 2022
    Configuration menu
    Copy the full SHA
    9600142 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2022

  1. updates kustomize with newly released version

    Signed-off-by: GitHub <noreply@github.com>
    Raffo committed May 27, 2022
    Configuration menu
    Copy the full SHA
    bb2606c View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2775 from kubernetes-sigs/raffo/bu…

    …mp-kustomize-v0.12.0
    
    Update kustomize version to v0.12.0
    k8s-ci-robot committed May 27, 2022
    Configuration menu
    Copy the full SHA
    13cde4e View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2022

  1. Configuration menu
    Copy the full SHA
    b21d11b View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2022

  1. feat: add debug logging for IP addr parse errors

    Log whenever a target is not able to be parsed as an IP address. This is expected
    to occur fairly often (for example, with CNAME targets), but allows more visibility
    into how targets are being compared.
    
    NOTE: depending on the number and type of targets, this could be quite noisy.
    wbh1 committed Jun 6, 2022
    Configuration menu
    Copy the full SHA
    b5d01ee View commit details
    Browse the repository at this point in the history
  2. fix: additionalPermissions is an array not object

    Signed-off-by: Tamal Saha <tamal@appscode.com>
    tamalsaha committed Jun 6, 2022
    Configuration menu
    Copy the full SHA
    1982179 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2022

  1. Merge pull request kubernetes-sigs#2716 from wbh1/fix/prefer-ips-as-less

    fix: prefer IP addresses as "less" when comparing endpoints
    k8s-ci-robot committed Jun 10, 2022
    Configuration menu
    Copy the full SHA
    2613d47 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2759 from darkn3rd/gke-refresh

    GKE doc tutorial refresh
    k8s-ci-robot committed Jun 10, 2022
    Configuration menu
    Copy the full SHA
    d4ef91b View commit details
    Browse the repository at this point in the history
  3. Bump go.etcd.io/etcd/api/v3 from 3.5.2 to 3.5.4

    Bumps [go.etcd.io/etcd/api/v3](https://github.com/etcd-io/etcd) from 3.5.2 to 3.5.4.
    - [Release notes](https://github.com/etcd-io/etcd/releases)
    - [Changelog](https://github.com/etcd-io/etcd/blob/main/Dockerfile-release.amd64)
    - [Commits](etcd-io/etcd@v3.5.2...v3.5.4)
    
    ---
    updated-dependencies:
    - dependency-name: go.etcd.io/etcd/api/v3
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jun 10, 2022
    Configuration menu
    Copy the full SHA
    90306eb View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2767 from acj/master

    Docs: Improve NodePort and hostPort mentions in FAQ
    k8s-ci-robot committed Jun 10, 2022
    Configuration menu
    Copy the full SHA
    4b3a17b View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes-sigs#2796 from tamalsaha/patch-1

    fix: additionalPermissions is an array not object
    k8s-ci-robot committed Jun 10, 2022
    Configuration menu
    Copy the full SHA
    b75645a View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes-sigs#2765 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/Azure/go-autorest/autorest/adal-0.9.20
    
    Bump github.com/Azure/go-autorest/autorest/adal from 0.9.16 to 0.9.20
    k8s-ci-robot committed Jun 10, 2022
    Configuration menu
    Copy the full SHA
    da6f673 View commit details
    Browse the repository at this point in the history
  7. fix: remove split of host/port

    This commit removes the need to split the host and port as the
    dns client configuration was refactored in v0.12.0 to no longer
    require this.
    
    Signed-off-by: Dustin Scott <dustin.scott18@gmail.com>
    Dustin Scott authored and scottd018 committed Jun 10, 2022
    Configuration menu
    Copy the full SHA
    604117b View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2022

  1. Configuration menu
    Copy the full SHA
    a5aefb6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2807 from stevehipwell/chart-impro…

    …vements
    
    Explicitly set Helm chart resource namespaces & support common labels
    k8s-ci-robot committed Jun 13, 2022
    Configuration menu
    Copy the full SHA
    60809f4 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2022

  1. Configuration menu
    Copy the full SHA
    ee336f5 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2022

  1. Merge pull request kubernetes-sigs#2740 from kubernetes-sigs/dependab…

    …ot/go_modules/go.etcd.io/etcd/api/v3-3.5.4
    
    Bump go.etcd.io/etcd/api/v3 from 3.5.2 to 3.5.4
    k8s-ci-robot committed Jun 15, 2022
    Configuration menu
    Copy the full SHA
    ac6d6eb View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2786 from renehernandez/simplified…

    …-wildcard-proxy
    
    Support proxying wildcard records
    k8s-ci-robot committed Jun 15, 2022
    Configuration menu
    Copy the full SHA
    e74d08f View commit details
    Browse the repository at this point in the history
  3. adds link to docs site

    Signed-off-by: Raffaele Di Fazio <raffo@github.com>
    Raffo committed Jun 15, 2022
    Configuration menu
    Copy the full SHA
    0134e38 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2783 from scottd018/fix-missing-port

    fix: remove split of host/port
    k8s-ci-robot committed Jun 15, 2022
    Configuration menu
    Copy the full SHA
    1de31c2 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes-sigs#2815 from kubernetes-sigs/raffo/li…

    …nk-to-docs
    
    Add link to docs site in README
    k8s-ci-robot committed Jun 15, 2022
    Configuration menu
    Copy the full SHA
    13e5d2a View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes-sigs#2681 from turrisxyz/naveensrinivas…

    …an/dependabot
    
    Included githubactions in dependabot config
    k8s-ci-robot committed Jun 15, 2022
    Configuration menu
    Copy the full SHA
    c5fc57f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4ace07f View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2022

  1. fix dependabot.yml intendation

    Raffo committed Jun 19, 2022
    Configuration menu
    Copy the full SHA
    b4618cf View commit details
    Browse the repository at this point in the history
  2. bumps a number of dependencies

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Jun 19, 2022
    Configuration menu
    Copy the full SHA
    1af5e6d View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2022

  1. Merge pull request kubernetes-sigs#2822 from kubernetes-sigs/raffo/fi…

    …x-dependabot-yaml-indentation
    
    fix dependabot.yml intendation
    k8s-ci-robot committed Jun 20, 2022
    Configuration menu
    Copy the full SHA
    e36262d View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2823 from kubernetes-sigs/raffo/de…

    …pendabot-bump
    
    Bump a number of dependencies
    k8s-ci-robot committed Jun 20, 2022
    Configuration menu
    Copy the full SHA
    a07b32f View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2022

  1. Merge pull request kubernetes-sigs#2766 from darkn3rd/aws-refresh

    AWS refresh, added IRSA section
    k8s-ci-robot committed Jun 22, 2022
    Configuration menu
    Copy the full SHA
    81f2c9b View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2022

  1. Update URL path for ANS-Group Go SDK

    UKFast have recently merged with ANS group [1] and have started to
    rename GitHub repositories. While GitHub will redirect repository
    accesses, it makes more sense to use the canonical URL going forward.
    
    As part of this, the versions have been updated to reflect their new
    module names [2] [3].
    
    1: https://www.ans.co.uk/campaigns/ukfast-is-now-ans/
    2: https://github.com/ans-group/go-durationstring/releases/tag/v1.2.0
    3: https://github.com/ans-group/sdk-go/releases/tag/v1.7.0
    
    Signed-off-by: Rick Henry <rick.henry@assureddigitaltech.com>
    Rick Henry committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    e58a901 View commit details
    Browse the repository at this point in the history
  2. Update references to UKFast to ANS group

    Signed-off-by: Rick Henry <rick.henry@assureddigitaltech.com>
    Rick Henry committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    aab63ec View commit details
    Browse the repository at this point in the history
  3. Update SafeDNS tutorial page to refer to ANS Group

    Note that some URLs were not updated, as there is not yet equivalent
    pages on the `ans.co.uk` domain.
    
    Signed-off-by: Rick Henry <rick.henry@assureddigitaltech.com>
    Rick Henry committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    698f3a6 View commit details
    Browse the repository at this point in the history
  4. Update reference to UKFast in README.md

    Signed-off-by: Rick Henry <rick.henry@assureddigitaltech.com>
    Rick Henry committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    3696224 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2022

  1. Merge pull request kubernetes-sigs#2777 from vojtechmares/master

    feat[chart]: Update to ExternalDNS v0.12.0
    k8s-ci-robot committed Jun 24, 2022
    Configuration menu
    Copy the full SHA
    0056d87 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2022

  1. Configuration menu
    Copy the full SHA
    116d26a View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2022

  1. Set logformat before logging config

    Google Cloud Logging (AKA Stackdriver Logs) interprets the default
    logrus log format as "error" severity even when `level=info` is
    present in the log output: ensure that the normal startup log
    is not parsed as an error by setting the JSON formatter first.
    
    Signed-off-by: Nathan J Mehl <n@oden.io>
    n-oden committed Jun 26, 2022
    Configuration menu
    Copy the full SHA
    59ae8a8 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2022

  1. replace Id with ID

    Co-authored-by: Steven E. Harris <seh@panix.com>
    PG2000 and seh committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    a05e502 View commit details
    Browse the repository at this point in the history
  2. replace Id with ID

    Co-authored-by: Steven E. Harris <seh@panix.com>
    PG2000 and seh committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    3c5b1f9 View commit details
    Browse the repository at this point in the history
  3. replace Id with ID

    Co-authored-by: Steven E. Harris <seh@panix.com>
    PG2000 and seh committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    d327ff7 View commit details
    Browse the repository at this point in the history
  4. replace Id with ID

    Co-authored-by: Steven E. Harris <seh@panix.com>
    PG2000 and seh committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    026e15b View commit details
    Browse the repository at this point in the history
  5. replace Id with ID

    Co-authored-by: Steven E. Harris <seh@panix.com>
    PG2000 and seh committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    fd68732 View commit details
    Browse the repository at this point in the history
  6. replace Id with ID

    Co-authored-by: Steven E. Harris <seh@panix.com>
    PG2000 and seh committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    ff56bf8 View commit details
    Browse the repository at this point in the history
  7. replace Id with ID

    Co-authored-by: Steven E. Harris <seh@panix.com>
    PG2000 and seh committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    52c8ede View commit details
    Browse the repository at this point in the history
  8. replace Id with ID

    Co-authored-by: Steven E. Harris <seh@panix.com>
    PG2000 and seh committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    ca99ed0 View commit details
    Browse the repository at this point in the history
  9. replace Id with ID

    Co-authored-by: Steven E. Harris <seh@panix.com>
    PG2000 and seh committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    ff46c40 View commit details
    Browse the repository at this point in the history
  10. replace Id with ID

    Co-authored-by: Steven E. Harris <seh@panix.com>
    PG2000 and seh committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    e1e48f8 View commit details
    Browse the repository at this point in the history
  11. replace Id with ID

    Co-authored-by: Steven E. Harris <seh@panix.com>
    PG2000 and seh committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    4d0be69 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2022

  1. Merge pull request kubernetes-sigs#2845 from darkn3rd/aws-doc-env-var…

    …-fix
    
    docs/tutorials/aws - small fix for env vars
    k8s-ci-robot committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    c588f84 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2022

  1. ci: update docker automatically

    dependabot will create PR for us
    
    other: fix typo for github-actions
    PascalBourdier committed Jun 30, 2022
    Configuration menu
    Copy the full SHA
    6b7c761 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2022

  1. chore[chart]: Fix CHANGELOG for v1.10.0

    Signed-off-by: Steve Hipwell <steve.hipwell@gmail.com>
    stevehipwell committed Jul 4, 2022
    Configuration menu
    Copy the full SHA
    d978e25 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2022

  1. Merge pull request kubernetes-sigs#2856 from stevehipwell/fix-helm-re…

    …lease-v1-10-0
    
    Fix Helm chart CHANGELOG for v1.10.0
    k8s-ci-robot committed Jul 8, 2022
    Configuration menu
    Copy the full SHA
    579c8a8 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2022

  1. bump govultr to 2.17.2

    David Dymko committed Jul 10, 2022
    Configuration menu
    Copy the full SHA
    21e30a2 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2022

  1. fix[chart]: Remove namespace from cluster scoped resources

    Signed-off-by: Steve Hipwell <steve.hipwell@gmail.com>
    stevehipwell committed Jul 11, 2022
    Configuration menu
    Copy the full SHA
    d35f7a2 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2022

  1. Merge pull request kubernetes-sigs#2866 from stevehipwell/fix-chart-n…

    …amespaces
    
    Remove namespace from cluster scoped resources
    k8s-ci-robot committed Jul 13, 2022
    Configuration menu
    Copy the full SHA
    6b40e70 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2851 from PascalBourdier/dependabo…

    …t-docker
    
    ci: update docker automatically
    k8s-ci-robot committed Jul 13, 2022
    Configuration menu
    Copy the full SHA
    8d52e25 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2842 from assureddt/master

    Update references to UK Fast after merge with ANS group
    k8s-ci-robot committed Jul 13, 2022
    Configuration menu
    Copy the full SHA
    beb7495 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    50f196c View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2022

  1. Configuration menu
    Copy the full SHA
    59f4f1c View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2022

  1. updates owners to add szuecs

    Raffo committed Jul 20, 2022
    Configuration menu
    Copy the full SHA
    4fe693d View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2811 from alebedev87/handle-missin…

    …g-txt-records
    
    Handle the migration to the new TXT format: create missing records
    k8s-ci-robot committed Jul 20, 2022
    Configuration menu
    Copy the full SHA
    3d7437c View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2022

  1. Configuration menu
    Copy the full SHA
    429bc7a View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2022

  1. Configuration menu
    Copy the full SHA
    ee32d06 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2022

  1. Fixed type as suggested

    Co-authored-by: Raffaele Di Fazio <raffo@github.com>
    claudiumocanu and Raffo committed Jul 23, 2022
    Configuration menu
    Copy the full SHA
    6e75baa View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2022

  1. Bump actions/checkout from 2 to 3

    Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    edf144e View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2874 from kubernetes-sigs/dependab…

    …ot/github_actions/actions/checkout-3
    
    Bump actions/checkout from 2 to 3
    k8s-ci-robot committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    1c8299a View commit details
    Browse the repository at this point in the history
  3. Bump helm/chart-testing-action from 2.2.0 to 2.2.1

    Bumps [helm/chart-testing-action](https://github.com/helm/chart-testing-action) from 2.2.0 to 2.2.1.
    - [Release notes](https://github.com/helm/chart-testing-action/releases)
    - [Commits](helm/chart-testing-action@v2.2.0...v2.2.1)
    
    ---
    updated-dependencies:
    - dependency-name: helm/chart-testing-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    6fadea1 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2877 from kubernetes-sigs/dependab…

    …ot/github_actions/helm/chart-testing-action-2.2.1
    
    Bump helm/chart-testing-action from 2.2.0 to 2.2.1
    k8s-ci-robot committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    4027fa5 View commit details
    Browse the repository at this point in the history
  5. Bump actions/setup-go from 2 to 3

    Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2 to 3.
    - [Release notes](https://github.com/actions/setup-go/releases)
    - [Commits](actions/setup-go@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-go
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    48731cd View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes-sigs#2907 from kubernetes-sigs/dependab…

    …ot/github_actions/actions/setup-go-3
    
    Bump actions/setup-go from 2 to 3
    k8s-ci-robot committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    884ee1a View commit details
    Browse the repository at this point in the history
  7. Update All GitHub Actions to use Go 1.18

    All GitHub actions that use actions/setup-go are being updated to use Go
    1.18. Now all CI tasks should be using hte same version of Go, 1.18.
    seanmalloy committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    9a0e0b8 View commit details
    Browse the repository at this point in the history
  8. Bump github/codeql-action from 1 to 2

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 1 to 2.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@v1...v2)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    811cc55 View commit details
    Browse the repository at this point in the history
  9. Merge pull request kubernetes-sigs#2906 from kubernetes-sigs/dependab…

    …ot/github_actions/github/codeql-action-2
    
    Bump github/codeql-action from 1 to 2
    k8s-ci-robot committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    f48408a View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2022

  1. Configuration menu
    Copy the full SHA
    0feb32d View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2913 from alebedev87/handle-missin…

    …g-txt-record-fix-batch
    
    Handle the migration to the new TXT format: missing records to be created separately
    k8s-ci-robot committed Jul 27, 2022
    Configuration menu
    Copy the full SHA
    4046257 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2022

  1. Merge pull request kubernetes-sigs#2609 from claudiumocanu/fix-reconc…

    …ile-blocker
    
    Do not reschedule, if already scheduled in the next MinInterval
    k8s-ci-robot committed Jul 29, 2022
    Configuration menu
    Copy the full SHA
    03e3d22 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2022

  1. Merge pull request kubernetes-sigs#2895 from kubernetes-sigs/raffo/up…

    …date-owners-szuecs
    
    updates owners to add szuecs
    k8s-ci-robot committed Jul 31, 2022
    Configuration menu
    Copy the full SHA
    026c459 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2022

  1. Merge pull request kubernetes-sigs#2693 from tobikris/add-target-net-…

    …filter
    
    add target filters based on network
    k8s-ci-robot committed Aug 2, 2022
    Configuration menu
    Copy the full SHA
    e2b86a1 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2022

  1. Merge pull request kubernetes-sigs#2908 from KohlsTechnology/bump-all…

    …-actions-to-go18
    
    Update All GitHub Actions to use Go 1.18
    k8s-ci-robot committed Aug 8, 2022
    Configuration menu
    Copy the full SHA
    2978597 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2022

  1. Merge pull request kubernetes-sigs#2902 from michelzanini/master

    feat: Add support to configure dnsPolicy on the Helm chart deployment
    k8s-ci-robot committed Aug 9, 2022
    Configuration menu
    Copy the full SHA
    5382a0a View commit details
    Browse the repository at this point in the history
  2. Changed the Deployment strategy to 'Recreate'

    so multiple external-dns pods don't conflict with each other.
    
    Signed-off-by: Mac Chaffee <machaffe@renci.org>
    mac-chaffee committed Aug 9, 2022
    Configuration menu
    Copy the full SHA
    3d343ae View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2022

  1. Merge pull request kubernetes-sigs#2772 from mac-chaffee/recreate

    Changed the Deployment strategy to 'Recreate' so multiple external-dns pods don't conflict with each other.
    k8s-ci-robot committed Aug 10, 2022
    Configuration menu
    Copy the full SHA
    f10948e View commit details
    Browse the repository at this point in the history
  2. Updated Helm chart to use ExternalDNS v0.12.2

    Signed-off-by: Steve Hipwell <steve.hipwell@gmail.com>
    stevehipwell committed Aug 10, 2022
    Configuration menu
    Copy the full SHA
    8b846d9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2940 from stevehipwell/chart-v1.10.2

    Updated Helm chart to use ExternalDNS v0.12.2
    k8s-ci-robot committed Aug 10, 2022
    Configuration menu
    Copy the full SHA
    b5fae91 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2022

  1. Update kustomization.yaml

    Raffo committed Aug 13, 2022
    Configuration menu
    Copy the full SHA
    1f0529e View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2952 from kubernetes-sigs/Raffo/bu…

    …mp-kustomize
    
    Update kustomization.yaml to v0.12.2
    k8s-ci-robot committed Aug 13, 2022
    Configuration menu
    Copy the full SHA
    e95c98b View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2022

  1. Configuration menu
    Copy the full SHA
    6b3baec View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2022

  1. Merge pull request kubernetes-sigs#2890 from skalpin/correct_infoblox…

    …_deletes
    
    Infoblox - Correct GetObject query
    k8s-ci-robot committed Aug 18, 2022
    Configuration menu
    Copy the full SHA
    3c1e72f View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2022

  1. Merge pull request kubernetes-sigs#2955 from akshaykrjain/patch-1

    Fixed a minor typo in aws tutorial
    k8s-ci-robot committed Aug 19, 2022
    Configuration menu
    Copy the full SHA
    99c4aa9 View commit details
    Browse the repository at this point in the history
  2. Update pkg/apis/externaldns/types.go

    Co-authored-by: Nick Jüttner <nick@juni.io>
    PG2000 and njuettner committed Aug 19, 2022
    Configuration menu
    Copy the full SHA
    03a28ee View commit details
    Browse the repository at this point in the history
  3. Apply suggestions from code review

    Co-authored-by: Nick Jüttner <nick@juni.io>
    PG2000 and njuettner committed Aug 19, 2022
    Configuration menu
    Copy the full SHA
    ce38a40 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    91aaf68 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes-sigs#2818 from PG2000/master

    support ExternalID in AWS Provider when assuming a role
    k8s-ci-robot committed Aug 19, 2022
    Configuration menu
    Copy the full SHA
    1f0f004 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2022

  1. bump k8s.io/apimachinery

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    8e468e1 View commit details
    Browse the repository at this point in the history
  2. bump k8s.io/api

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    25cdd6c View commit details
    Browse the repository at this point in the history
  3. bump google.golang.org/api

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    5372ab0 View commit details
    Browse the repository at this point in the history
  4. bump github.com/IBM-Cloud/ibm-cloud-cli-sdk

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    66a9105 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes-sigs#2864 from ddymko/vultr-dep-updates

    bump govultr from v2.14.1 to v2.17.2
    k8s-ci-robot committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    e3e79bf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8f0a609 View commit details
    Browse the repository at this point in the history
  7. bump github.com/transip/gotransip/v6

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    0abdd99 View commit details
    Browse the repository at this point in the history
  8. Merge pull request kubernetes-sigs#2961 from kubernetes-sigs/raffo/bu…

    …mp-deps
    
    Bump several dependencies
    k8s-ci-robot committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    92c1b86 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2022

  1. bumps github.com/IBM/networking-go-sdk

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Aug 21, 2022
    Configuration menu
    Copy the full SHA
    6852468 View commit details
    Browse the repository at this point in the history
  2. bumps github.com/sirupsen/logrus

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Aug 21, 2022
    Configuration menu
    Copy the full SHA
    a20fc3f View commit details
    Browse the repository at this point in the history
  3. bumps github.com/aws/aws-sdk-go

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Aug 21, 2022
    Configuration menu
    Copy the full SHA
    32fa66c View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2022

  1. cloud.google.com/go/compute and github.com/ans-group/sdk-go

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    d0da613 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2965 from kubernetes-sigs/raffo/mo…

    …re-dependabot
    
    More dependabot updates
    k8s-ci-robot committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    d44b239 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2022

  1. Bump github.com/aliyun/alibaba-cloud-sdk-go from 1.61.1483 to 1.61.1742

    Bumps [github.com/aliyun/alibaba-cloud-sdk-go](https://github.com/aliyun/alibaba-cloud-sdk-go) from 1.61.1483 to 1.61.1742.
    - [Release notes](https://github.com/aliyun/alibaba-cloud-sdk-go/releases)
    - [Changelog](https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/ChangeLog.txt)
    - [Commits](aliyun/alibaba-cloud-sdk-go@v1.61.1483...v1.61.1742)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/aliyun/alibaba-cloud-sdk-go
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Aug 29, 2022
    Configuration menu
    Copy the full SHA
    cf8c4c5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2983 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/aliyun/alibaba-cloud-sdk-go-1.61.1742
    
    Bump github.com/aliyun/alibaba-cloud-sdk-go from 1.61.1483 to 1.61.1742
    k8s-ci-robot committed Aug 29, 2022
    Configuration menu
    Copy the full SHA
    819f61e View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2022

  1. * golint is abandoned see https://github.com/golang/lint

    * interfacer is also abandoned see:
    WARN [runner] The linter interfacer is deprecated (since v1.38.0) due to: The repository of the linter has been archived by the owner.
    
    Signed-off-by: Sandor Szücs <sandor.szuecs@zalando.de>
    szuecs committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    bb8cc10 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2022

  1. Configuration menu
    Copy the full SHA
    594519a View commit details
    Browse the repository at this point in the history
  2. Ignore ambassador-hosts with invalid annotations

    If e.g the ambassador service annotation points to an nonexisting service, external-dns will not update any DNS records. This PR makes external-dns ignore the host and carry on instead.
    Ole Markus With committed Sep 7, 2022
    Configuration menu
    Copy the full SHA
    a1a9091 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#3008 from olemarkus/continue-on-ba…

    …d-host
    
    Ignore ambassador-hosts with invalid annotations
    k8s-ci-robot committed Sep 7, 2022
    Configuration menu
    Copy the full SHA
    47b3a15 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2022

  1. Configuration menu
    Copy the full SHA
    7dbf503 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2022

  1. Bump github.com/cloudflare/cloudflare-go from 0.25.0 to 0.50.0

    Bumps [github.com/cloudflare/cloudflare-go](https://github.com/cloudflare/cloudflare-go) from 0.25.0 to 0.50.0.
    - [Release notes](https://github.com/cloudflare/cloudflare-go/releases)
    - [Changelog](https://github.com/cloudflare/cloudflare-go/blob/master/CHANGELOG.md)
    - [Commits](cloudflare/cloudflare-go@v0.25.0...v0.50.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/cloudflare/cloudflare-go
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 14, 2022
    Configuration menu
    Copy the full SHA
    4c842eb View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2989 from szuecs/linter/drop-dead-…

    …project
    
    drop golint from linters
    k8s-ci-robot committed Sep 14, 2022
    Configuration menu
    Copy the full SHA
    dd98d6a View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2022

  1. Merge pull request kubernetes-sigs#2847 from odenio/master

    Set logformat before logging config
    k8s-ci-robot committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    648c0dc View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#3021 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/cloudflare/cloudflare-go-0.50.0
    
    Bump github.com/cloudflare/cloudflare-go from 0.25.0 to 0.50.0
    k8s-ci-robot committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    e47d561 View commit details
    Browse the repository at this point in the history
  3. add the provider for the tencent cloud.

    Signed-off-by: misakazhou <misakazhou@tencent.com>
    Hyzhou committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    a2e7ffc View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2630 from Hyzhou/tencentcloud-prov…

    …ider
    
    Add the provider for the Tencent Cloud.
    k8s-ci-robot committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    78b5175 View commit details
    Browse the repository at this point in the history
  5. Implement plural provider

    add plural to provider enum
    
    go mod tidy
    
    remove gitlab-ci
    
    Signed-off-by: DavidSpek <vanderspek.david@gmail.com>
    
    cleanup
    
    Signed-off-by: DavidSpek <vanderspek.david@gmail.com>
    davidspek authored and zreigz committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    62848b5 View commit details
    Browse the repository at this point in the history
  6. Add Plural to READMEs

    Signed-off-by: DavidSpek <vanderspek.david@gmail.com>
    davidspek authored and zreigz committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    d70e4bc View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3f5ea38 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    79b7fe9 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    bef67ee View commit details
    Browse the repository at this point in the history
  10. fix conflicts

    zreigz committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    7755f92 View commit details
    Browse the repository at this point in the history
  11. bump gqlclient to v1.1.6

    zreigz committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    00ec786 View commit details
    Browse the repository at this point in the history
  12. rebase

    zreigz committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    0b2d3ed View commit details
    Browse the repository at this point in the history
  13. Merge pull request kubernetes-sigs#2758 from luke-plausin-kidsloop/fi…

    …x/missing-regions-r53
    
    Fix/missing regions r53
    k8s-ci-robot committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    9e0a232 View commit details
    Browse the repository at this point in the history
  14. Merge pull request kubernetes-sigs#2923 from pluralsh/plural-provider…

    …-rebase
    
    feat: Add Plural DNS provider
    k8s-ci-robot committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    a763843 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2022

  1. Configuration menu
    Copy the full SHA
    4b5b64c View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2022

  1. gofumpt

    abursavich committed Sep 21, 2022
    Configuration menu
    Copy the full SHA
    74ffff6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#3033 from abursavich/plural-copyright

    Add missing copyright header and gofumpt
    k8s-ci-robot committed Sep 21, 2022
    Configuration menu
    Copy the full SHA
    146ffa5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a7a56b9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b0dc173 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes-sigs#2881 from abursavich/gateway-api-v0.5

    gateway-api: upgrade from v0.4.3 to v0.5.0
    k8s-ci-robot committed Sep 21, 2022
    Configuration menu
    Copy the full SHA
    8c78f44 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2022

  1. bumps dependencies

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    b605f20 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#3035 from kubernetes-sigs/raffo/bu…

    …mp-deps-2022-09-22
    
    Bump dependencies for multiple packages
    k8s-ci-robot committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    009a3ce View commit details
    Browse the repository at this point in the history
  3. Bump k8s.io/client-go from 0.24.1 to 0.25.2

    Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go) from 0.24.1 to 0.25.2.
    - [Release notes](https://github.com/kubernetes/client-go/releases)
    - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
    - [Commits](kubernetes/client-go@v0.24.1...v0.25.2)
    
    ---
    updated-dependencies:
    - dependency-name: k8s.io/client-go
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    487cc0e View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#3034 from kubernetes-sigs/dependab…

    …ot/go_modules/k8s.io/client-go-0.25.2
    
    Bump k8s.io/client-go from 0.24.1 to 0.25.2
    k8s-ci-robot committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    cc82c6b View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2022

  1. Update aws.md

    mule-bob committed Sep 26, 2022
    Configuration menu
    Copy the full SHA
    138ac3d View commit details
    Browse the repository at this point in the history
  2. fix more typos

    mule-bob committed Sep 26, 2022
    Configuration menu
    Copy the full SHA
    894f8e3 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2022

  1. Merge pull request kubernetes-sigs#3050 from mule-bob/patch-1

    Documentation: Update aws.md
    k8s-ci-robot committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    178ea0e View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2022

  1. Bump github.com/IBM-Cloud/ibm-cloud-cli-sdk from 0.11.0 to 1.0.0

    Bumps [github.com/IBM-Cloud/ibm-cloud-cli-sdk](https://github.com/IBM-Cloud/ibm-cloud-cli-sdk) from 0.11.0 to 1.0.0.
    - [Release notes](https://github.com/IBM-Cloud/ibm-cloud-cli-sdk/releases)
    - [Commits](IBM-Cloud/ibm-cloud-cli-sdk@v0.11.0...v1.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/IBM-Cloud/ibm-cloud-cli-sdk
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 6, 2022
    Configuration menu
    Copy the full SHA
    9fa5985 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#3017 from olemarkus/ignore-invalid…

    …-endpoint
    
    Don't create endpoint if attempting to create one with invalid dns name
    k8s-ci-robot committed Oct 6, 2022
    Configuration menu
    Copy the full SHA
    644b880 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2022

  1. Add a warning about releases v0.12.0 - v0.12.2

    With respect to them having a huge bug for the Infoblox provider. See kubernetes-sigs#2890
    RichieSams committed Oct 7, 2022
    Configuration menu
    Copy the full SHA
    60a8446 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2022

  1. Merge pull request kubernetes-sigs#3071 from RichieSams/add_warning_a…

    …bout_infoblox
    
    Add a warning about releases v0.12.0 - v0.12.2
    k8s-ci-robot committed Oct 8, 2022
    Configuration menu
    Copy the full SHA
    d6afc9b View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2022

  1. Configuration menu
    Copy the full SHA
    9d2cb16 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2022

  1. Merge pull request kubernetes-sigs#3079 from knkarthik/knkarthik-patch-1

    Use registry.k8s.io in external-dns-deployment yml
    k8s-ci-robot committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    204c08b View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2022

  1. Bump github.com/ans-group/sdk-go from 1.8.1 to 1.10.4

    Bumps [github.com/ans-group/sdk-go](https://github.com/ans-group/sdk-go) from 1.8.1 to 1.10.4.
    - [Release notes](https://github.com/ans-group/sdk-go/releases)
    - [Commits](ans-group/sdk-go@v1.8.1...v1.10.4)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/ans-group/sdk-go
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 17, 2022
    Configuration menu
    Copy the full SHA
    c616cd7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#3066 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/IBM-Cloud/ibm-cloud-cli-sdk-1.0.0
    
    Bump github.com/IBM-Cloud/ibm-cloud-cli-sdk from 0.11.0 to 1.0.0
    k8s-ci-robot committed Oct 17, 2022
    Configuration menu
    Copy the full SHA
    024012d View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#3087 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/ans-group/sdk-go-1.10.4
    
    Bump github.com/ans-group/sdk-go from 1.8.1 to 1.10.4
    k8s-ci-robot committed Oct 17, 2022
    Configuration menu
    Copy the full SHA
    3cbb88f View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2022

  1. fixes a few high/critical vulns

    Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
    Raffo committed Oct 20, 2022
    Configuration menu
    Copy the full SHA
    a0f0903 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#3098 from kubernetes-sigs/raffo/fi…

    …x-vuln-2022-10-20
    
    Fix a few high/critical vulns
    k8s-ci-robot committed Oct 20, 2022
    Configuration menu
    Copy the full SHA
    6d92c86 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2022

  1. Configuration menu
    Copy the full SHA
    d7bfd7d View commit details
    Browse the repository at this point in the history
  2. UPSTREAM: <carry>: openshift: Add DOWNSTREAM_OWNERS

    This commit adds a DOWNSTREAM_OWNERS file to reflect
    OpenShift-appropriate Reviewers and Approvers.
    sgreene570 authored and alebedev87 committed Oct 25, 2022
    Configuration menu
    Copy the full SHA
    ca3d41a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4a9b15d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3815407 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0ed874d View commit details
    Browse the repository at this point in the history
  6. update vendored files

    rfredette authored and alebedev87 committed Oct 25, 2022
    Configuration menu
    Copy the full SHA
    4d7e5ad View commit details
    Browse the repository at this point in the history
  7. upstream rebase tag documentation

    Elbehery authored and alebedev87 committed Oct 25, 2022
    Configuration menu
    Copy the full SHA
    4c62150 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c370c59 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2d9a805 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e1cd826 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2022

  1. Configuration menu
    Copy the full SHA
    3f19a02 View commit details
    Browse the repository at this point in the history