forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fips] - Enable fips on select component
This would enable *fipsonly* on the following component: - kubelet - kubectl - kube-controller-manager - kube-scheduler The apiserver is currently being held back because not all client is going to be fips. Especially in non govcloud environment. datadog:patch
- Loading branch information
Showing
5 changed files
with
27 additions
and
2 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
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,6 @@ | ||
//go:build fips | ||
|
||
package main | ||
|
||
// enforce fips compliance if boringcrypto is enabled | ||
import _ "crypto/tls/fipsonly" |
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,6 @@ | ||
//go:build fips | ||
|
||
package main | ||
|
||
// enforce fips compliance if boringcrypto is enabled | ||
import _ "crypto/tls/fipsonly" |
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,6 @@ | ||
//go:build fips | ||
|
||
package main | ||
|
||
// enforce fips compliance if boringcrypto is enabled | ||
import _ "crypto/tls/fipsonly" |
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,6 @@ | ||
//go:build fips | ||
|
||
package main | ||
|
||
// enforce fips compliance if boringcrypto is enabled | ||
import _ "crypto/tls/fipsonly" |