Merge branch 'kub-stage' into production
Build and Deploy to Production / build-and-deploy (push) Failing after 20m50s
Build and Deploy to Production / build-and-deploy (push) Failing after 20m50s
This commit is contained in:
@@ -95,6 +95,7 @@ jobs:
|
||||
sshpass -e ssh -o StrictHostKeyChecking=no root@${{ env.K8S_SERVER }} "
|
||||
kubectl apply -f /tmp/cms-config.yaml &&
|
||||
kubectl apply -f /tmp/cms-deployment.yaml &&
|
||||
crictl rmi ${REGISTRY}/${IMAGE_NAME}:latest 2>/dev/null || true &&
|
||||
kubectl rollout restart deployment/cms &&
|
||||
kubectl rollout status deployment/cms --timeout=180s &&
|
||||
rm -f /tmp/cms-config.yaml /tmp/cms-deployment.yaml
|
||||
|
||||
@@ -179,6 +179,17 @@ public class NetworkMembershipService : NetworkMembershipContract.NetworkMembers
|
||||
|
||||
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
|
||||
if (dto.LeftChild != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user