You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.
What would you like to be added:
By looking at the structure of edgex-compose, we can find that each edgex version above hanoi is divided into safe and unsafe versions. The insecure version of edgex is a subset of the secure version. In other words, the secure version of edgex will add some components and configurations on the basis of the insecure version. For the added components, we can scan the component information by grabbing the docker-compose-<version>-no-secty.yml file to see which components are secure. For the added configuration, since the added environment variables do not have any effect on the running of the insecure version, we can ignore them.
Write the result to the IsSecurity field in Component
typeComponentstruct {
Namestring`yaml:"name"`Imagestring`yaml:"image"`Volumes []string`yaml:"volumns,omitempty"`ComponentEnvmap[string]string`yaml:"componentEnv,omitempty"`// TODO: We need to collect another no-security file and mark which components are not secureIsSecuritybool`yaml:"isSecurity"`// A pointer to the Env of the previous levelenvRef*map[string]string
}
What would you like to be added:
By looking at the structure of
edgex-compose
, we can find that each edgex version above hanoi is divided into safe and unsafe versions. The insecure version of edgex is a subset of the secure version. In other words, the secure version of edgex will add some components and configurations on the basis of the insecure version. For the added components, we can scan the component information by grabbing thedocker-compose-<version>-no-secty.yml
file to see which components are secure. For the added configuration, since the added environment variables do not have any effect on the running of the insecure version, we can ignore them.Write the result to the
IsSecurity
field inComponent
Refer to Add a security switch
Why is this needed:
Refer to EdgeX Auto-colllector Proposal
others
/kind feature
The text was updated successfully, but these errors were encountered: