Skip to content

Commit

Permalink
Merge pull request #130 from openconfig/hines
Browse files Browse the repository at this point in the history
Add certz profile id into the bootstrap response. This is required
  • Loading branch information
marcushines authored Mar 7, 2024
2 parents e8e8a13 + 62b6303 commit e3a0d45
Show file tree
Hide file tree
Showing 2 changed files with 347 additions and 177 deletions.
16 changes: 15 additions & 1 deletion proto/bootz.proto
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,21 @@ message BootstrapDataResponse {
Credentials credentials = 6;
gnsi.pathz.v1.UploadRequest pathz = 7;
gnsi.authz.v1.UploadRequest authz = 8;
gnsi.certz.v1.UploadRequest certificates = 9;
gnsi.certz.v1.UploadRequest certificates = 9 [deprecated=true];
CertzProfiles certz_profiles = 10;
}

// CertzArtifacts contains the Certz profiles and entities to create.
// The profiles cannot contain duplicate id's and must never contain
// the id `system_default_profile`.
message CertzProfiles {
repeated CertzProfile profiles = 1;
}

// CertzArtifact is the profile ID and Certz entities for the profile.
message CertzProfile {
string ssl_profile_id = 1;
gnsi.certz.v1.UploadRequest certz = 2;
}

// Container message that is signed by server.
Expand Down
Loading

0 comments on commit e3a0d45

Please sign in to comment.