String image = containerConfig.getImage();
Set<String> profileIds = options.getProfiles();
String versionId = options.getVersion();
FabricService service = getFabricService();
PodSchema pod = new PodSchema();
pod.setId(KubernetesHelpers.containerNameToPodId(name));
Map<String, String> labels = updateLabels(null, service, name, profileIds, versionId);
pod.setLabels(labels);
DesiredState desiredState = new DesiredState();
pod.setDesiredState(desiredState);
ManifestSchema manifest = new ManifestSchema();
manifest.setVersion(ManifestSchema.Version.V_1_BETA_1);
desiredState.setManifest(manifest);
ManifestContainer manifestContainer = new ManifestContainer();