diff --git a/CHANGELOG.md b/CHANGELOG.md index b5c145fe0ed..c664b4a9bc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,7 +56,7 @@ - Use `host` instead of `apiHost` in `rabbitmq` scaler. Add `protocol` in trigger spec to specify which protocol should be used ([#1115](https://github.com/kedacore/keda/pull/1115)) ### Other -- Update Operator SDK and k8s deps ([#1007](https://github.com/kedacore/keda/pull/1007),[#870](https://github.com/kedacore/keda/issues/870)) +- Update Operator SDK and k8s deps ([#1007](https://github.com/kedacore/keda/pull/1007),[#870](https://github.com/kedacore/keda/issues/870),[#1180](https://github.com/kedacore/keda/pull/1180)) - Change Metrics Server image name from `keda-metrics-adapter` to `keda-metrics-apiserver` ([#1105](https://github.com/kedacore/keda/issues/1105)) ## v1.5.0 diff --git a/tools/build-tools.Dockerfile b/tools/build-tools.Dockerfile index 27991198061..ccc484dd344 100644 --- a/tools/build-tools.Dockerfile +++ b/tools/build-tools.Dockerfile @@ -55,10 +55,10 @@ RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - && \ apt-get install -y nodejs # Install operator-sdk -RUN RELEASE_VERSION=v1.0.0 && \ +RUN RELEASE_VERSION=v1.0.1 && \ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu && \ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu.asc && \ - gpg --keyserver keyserver.ubuntu.com --recv-key BF6F6F18846753754CBB1DDFBC9679ED89ED8983 && \ + gpg --keyserver keyserver.ubuntu.com --recv-key 0CF50BEE7E4DF6445E08C0EA9AFDE59E90D2B445 && \ gpg --verify operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu.asc && \ chmod +x operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu && \ mkdir -p /usr/local/bin/ && \