Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demo/dlb-dpdk-demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN cd dpdk-* && patch -Np1 < $(echo ../dlb/dpdk/dpdk_dlb_*.patch) && sed -i 's/
RUN cd dpdk-* && ninja -C builddir install && install -D builddir/app/dpdk-test-eventdev /install_root/usr/bin/dpdk-test-eventdev

FROM ubuntu:20.04
RUN apt-get update && apt-get install -y libnuma1
RUN apt-get update && apt-get install -y libnuma1 libatomic1
COPY --from=builder /install_root /
COPY test.sh /usr/bin/

Expand Down
19 changes: 17 additions & 2 deletions deployments/sgx_aesmd/base/sgx_default_qcnl.conf
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
PCCS_URL=https://localhost:8081/sgx/certification/v3/
USE_SECURE_CERT=FALSE
{
// *** ATTENTION : This file is in JSON format so the keys are case sensitive. Don't change them.

// This sample is a typical config file for a development environment which has a local PCCS setup
// QPL will get PCK certificates as well as quote verification collateral from the local PCCS service
// The PCCS service uses self-signed certificates
// You should choose the correct PCCS API version. "3.1" will return CRL in raw DER format
// It is recommended to use "3.1" for DCAP 1.12 release and later

//PCCS server address
"pccs_url": "https://localhost:8081/sgx/certification/v4/",

// To accept insecure HTTPS certificate, set this option to false
"use_secure_cert": false,

"pccs_api_version": "3.1"
}
2 changes: 0 additions & 2 deletions deployments/sgx_enclave_apps/base/intelsgx-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ spec:
securityContext:
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
capabilities:
add: ["IPC_LOCK"]
resources:
limits:
sgx.intel.com/epc: "512Ki"
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
PCCS_URL=https://localhost:8081/sgx/certification/v3/
USE_SECURE_CERT=FALSE
{
// *** ATTENTION : This file is in JSON format so the keys are case sensitive. Don't change them.

// This sample is a typical config file for a development environment which has a local PCCS setup
// QPL will get PCK certificates as well as quote verification collateral from the local PCCS service
// The PCCS service uses self-signed certificates
// You should choose the correct PCCS API version. "3.1" will return CRL in raw DER format
// It is recommended to use "3.1" for DCAP 1.12 release and later

//PCCS server address
"pccs_url": "https://localhost:8081/sgx/certification/v4/",

// To accept insecure HTTPS certificate, set this option to false
"use_secure_cert": false,

"pccs_api_version": "3.1"
}
2 changes: 1 addition & 1 deletion test/e2e/deviceplugins_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func setupFirstNode() []byte {
utils.Kubectl("node-feature-discovery", "apply", "-k", "deployments/nfd/overlays/node-feature-rules/kustomization.yaml")

if err = e2epod.WaitForPodsRunningReady(c, "node-feature-discovery", 2, 0,
100*time.Second, map[string]string{}); err != nil {
200*time.Second, map[string]string{}); err != nil {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using proxy/mirror didn't fully fix the e2e issues?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm preparing for another change that makes the spr/gnr instances to run a bit slower.

framework.Failf("unable to wait for NFD pods to be running and ready: %v", err)
}

Expand Down