fix(cms-deployment): change imagePullPolicy to IfNotPresent for cms container
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 19m13s
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 19m13s
This commit is contained in:
@@ -36,7 +36,7 @@ spec:
|
|||||||
containers:
|
containers:
|
||||||
- name: cms
|
- name: cms
|
||||||
image: 194.5.195.53:30080/admin/cms:latest
|
image: 194.5.195.53:30080/admin/cms:latest
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: IfNotPresent
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
name: http
|
name: http
|
||||||
|
|||||||
@@ -179,6 +179,17 @@ public class NetworkMembershipService : NetworkMembershipContract.NetworkMembers
|
|||||||
|
|
||||||
node.IsActivatedInTargetWeek = dto.IsActivatedInTargetWeek;
|
node.IsActivatedInTargetWeek = dto.IsActivatedInTargetWeek;
|
||||||
|
|
||||||
|
node.PackageName = dto.PackageName ?? string.Empty;
|
||||||
|
if (dto.PackageId.HasValue)
|
||||||
|
{
|
||||||
|
node.PackageId = dto.PackageId.Value;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dto.IsNewActivation.HasValue)
|
||||||
|
{
|
||||||
|
node.IsNewActivation = dto.IsNewActivation.Value;
|
||||||
|
}
|
||||||
|
|
||||||
// Recursively convert children
|
// Recursively convert children
|
||||||
if (dto.LeftChild != null)
|
if (dto.LeftChild != null)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user