We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This change adds an experimental configuration for iperf3 server behind the access envelope.
See:
The text was updated successfully, but these errors were encountered:
Example configuration from deleted branch.
k8s/daemonsets/experiments/iperf3.jsonnet:
k8s/daemonsets/experiments/iperf3.jsonnet
local exp = import '../templates.jsonnet'; local expName = 'iperf3'; exp.Experiment(expName, 6, 'pusher-' + std.extVar('PROJECT_ID'), 'netblock', ['test']) + { spec+: { template+: { metadata+: { annotations+: { 'secret.reloader.stakater.com/reload': 'measurement-lab-org-tls', }, }, spec+: { containers+: [ { args: [ '-envelope.key=/certs/tls.key', '-envelope.cert=/certs/tls.crt', '-envelope.listen-address=:443', '-envelope.device=net1', '-envelope.subject=iperf3', '-envelope.machine=$(MLAB_NODE_NAME)', '-envelope.verify-key=/verify/jwk_sig_EdDSA_locate_20200409.pub', // Maximum timeout for a client to hold the envelope open. '-timeout=2m', ], env: [ { name: 'MLAB_NODE_NAME', valueFrom: { fieldRef: { fieldPath: 'spec.nodeName', }, }, }, ], image: 'soltesz/access:v0.4', name: 'access', securityContext: { capabilities: { add: [ 'NET_ADMIN', ], }, }, volumeMounts: [ { mountPath: '/certs', name: 'measurement-lab-org-tls', readOnly: true, }, { mountPath: '/verify', name: 'locate-verify-keys', readOnly: true, }, ], }, { # Start the iperf3 server. args: [ '-s' ], image: 'soltesz/iperf3:v0.0', name: expName, }, ], volumes+: [ { name: 'measurement-lab-org-tls', secret: { secretName: 'measurement-lab-org-tls', }, }, { name: 'locate-verify-keys', secret: { secretName: 'locate-verify-keys', }, }, ], }, }, }, }
With a conditional import in system.jsonnet.
system.jsonnet
Sorry, something went wrong.
No branches or pull requests
This change adds an experimental configuration for iperf3 server behind the access envelope.
See:
The text was updated successfully, but these errors were encountered: