Skip to content

Commit 69ba8b0

Browse files
authored
Ignore CVEs 2021-3533 and 2021-3532 in Ansible 2.9 base image (#5465)
* Ignore CVEs 2021-3533 and 2021-3532 in base image The following CVEs are causing `pipenv check` step of image build to fail: https://nvd.nist.gov/vuln/detail/CVE-2021-3533 https://nvd.nist.gov/vuln/detail/CVE-2021-3532 Both of these CVEs are against Ansible 2.9. The Ansible team is aware of them, but they require deliberately insecure configuration from the user and the Ansible team considers them invalid CVEs. There are no plans for these to be fixed in the 2.9.z stream and will not cause a security problem with Ansible-based operators. Signed-off-by: austin <[email protected]> * Rerun sanity tests in 2022 Signed-off-by: austin <[email protected]>
1 parent dad3e83 commit 69ba8b0

19 files changed

+18
-19
lines changed

OWNERS_ALIASES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ aliases:
77
sdk-admins:
88
- estroz
99
- joelanford
10-
- jmccormick2001
1110
- jmrodri
1211
- asmacdo
1312
- marc-obrien

images/ansible-operator/base.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN yum clean all && rm -rf /var/cache/yum/* \
3333
&& pip3 install --upgrade pip~=21.1.0 \
3434
&& pip3 install pipenv==2020.11.15 \
3535
&& pipenv install --deploy \
36-
&& pipenv check \
36+
&& pipenv check -i 42926 -i 42923 \
3737
&& yum remove -y gcc libffi-devel openssl-devel python38-devel \
3838
&& yum clean all \
3939
&& rm -rf /var/cache/yum

testdata/go/v2/memcached-operator/api/v1alpha1/groupversion_info.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2021.
2+
Copyright 2022.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

testdata/go/v2/memcached-operator/api/v1alpha1/memcached_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2021.
2+
Copyright 2022.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

testdata/go/v2/memcached-operator/api/v1alpha1/memcached_webhook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2021.
2+
Copyright 2022.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

testdata/go/v2/memcached-operator/api/v1alpha1/zz_generated.deepcopy.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

testdata/go/v2/memcached-operator/controllers/memcached_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2021.
2+
Copyright 2022.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

testdata/go/v2/memcached-operator/controllers/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2021.
2+
Copyright 2022.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

testdata/go/v2/memcached-operator/hack/boilerplate.go.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2021.
2+
Copyright 2022.
33

44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

testdata/go/v2/memcached-operator/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2021.
2+
Copyright 2022.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)