In CI/CD how to manage dependency between frontend and backend?
I'll describe my setup to make the problems less abstract, but they don't seem specific to my case.
Context
We have Python-Django backend and a VueJS frontend, each in a repository, with Gitlab-CI configured and deploy using Portainer (using a stack).
A commit in the production branch of each repository follows this path:
- commit
- gitlab-ci pipeline:
- build docker image
- test image (frontend is tested against deployed backend)
- tag image as production:latest
- push image back to gitlab registry
- webhook the corresponding service (frontend/backend) in portainer to update the deployed image
- portainer:
- pull image
- deploy
Problems
Deployment synchronization
Imagine we're doing a major change in both frontend and backend, and both will become incompatible with previous versions. So the new versions must be deployed simultaneously.
In our current setup we have to first deploy the backend (what will break the deployed frontend) and then deploy the new frontend, fixing production, but with a "down" period.
Branch dependency for tests
Sometimes when we develop branch feature-1 in the frontend, it must be tested against branch feature-1 from the backend.
In our current setup all the commits in the frontend are tested against the deployed backend (to avoid replicating the backend in CI, only the production API address is used), resulting in false tests results in such cases.
Backend integration tests
When a commit is done to the backend, it can break the frontend.
Currently the backend isn't tested against the frontend (only the other way).
Possible Solutions
For the deployment synchronization problem I thought about creating another repository that would have only one file specifying the versions for frontend and backend that should be deployed. A commit in this repository would result in both Portanier' services webhooks being "curled" for update (backend and frontend). This doesn't guarantee the simultaneous update (one may fail in Portainer and there would be no rollback), but it would be better than current setup.
I'm not sure about what should be used to specify versions here: commit hash, git tag, branch, docker image version... The last maybe avoids having to rebuild and test images, but I think images name and versions are fixed in Portainer' stacks definition, and not easy to update automatically.
For the branch dependency tests I thought about having a file in each repository (frontend and backend) specifying which branch from the backend/frontend to test against. But the CI for each repository would have to replicate the whole deploy environment (running a new backend and frontend to test each frontend commit, for example). This would also allow backend integration tests. Since we're using Docker, that's not very complicated, but will take extra time for each CI pipeline... Also, when the first repository (frontend or backend) is committed, it'll reference a still non existent branch in the other repository, and fail...
These solutions seem awkward to me, specially if these are problems common to CI/CD with Docker. And it can get even uglier when we add more repositories to the mix.
Alternatives?
Thanks for the attention!
(edit: for curious, my current setup was based on this article)
docker continuous-integration gitlab-ci continuous-deployment portainer
add a comment |
I'll describe my setup to make the problems less abstract, but they don't seem specific to my case.
Context
We have Python-Django backend and a VueJS frontend, each in a repository, with Gitlab-CI configured and deploy using Portainer (using a stack).
A commit in the production branch of each repository follows this path:
- commit
- gitlab-ci pipeline:
- build docker image
- test image (frontend is tested against deployed backend)
- tag image as production:latest
- push image back to gitlab registry
- webhook the corresponding service (frontend/backend) in portainer to update the deployed image
- portainer:
- pull image
- deploy
Problems
Deployment synchronization
Imagine we're doing a major change in both frontend and backend, and both will become incompatible with previous versions. So the new versions must be deployed simultaneously.
In our current setup we have to first deploy the backend (what will break the deployed frontend) and then deploy the new frontend, fixing production, but with a "down" period.
Branch dependency for tests
Sometimes when we develop branch feature-1 in the frontend, it must be tested against branch feature-1 from the backend.
In our current setup all the commits in the frontend are tested against the deployed backend (to avoid replicating the backend in CI, only the production API address is used), resulting in false tests results in such cases.
Backend integration tests
When a commit is done to the backend, it can break the frontend.
Currently the backend isn't tested against the frontend (only the other way).
Possible Solutions
For the deployment synchronization problem I thought about creating another repository that would have only one file specifying the versions for frontend and backend that should be deployed. A commit in this repository would result in both Portanier' services webhooks being "curled" for update (backend and frontend). This doesn't guarantee the simultaneous update (one may fail in Portainer and there would be no rollback), but it would be better than current setup.
I'm not sure about what should be used to specify versions here: commit hash, git tag, branch, docker image version... The last maybe avoids having to rebuild and test images, but I think images name and versions are fixed in Portainer' stacks definition, and not easy to update automatically.
For the branch dependency tests I thought about having a file in each repository (frontend and backend) specifying which branch from the backend/frontend to test against. But the CI for each repository would have to replicate the whole deploy environment (running a new backend and frontend to test each frontend commit, for example). This would also allow backend integration tests. Since we're using Docker, that's not very complicated, but will take extra time for each CI pipeline... Also, when the first repository (frontend or backend) is committed, it'll reference a still non existent branch in the other repository, and fail...
These solutions seem awkward to me, specially if these are problems common to CI/CD with Docker. And it can get even uglier when we add more repositories to the mix.
Alternatives?
Thanks for the attention!
(edit: for curious, my current setup was based on this article)
docker continuous-integration gitlab-ci continuous-deployment portainer
add a comment |
I'll describe my setup to make the problems less abstract, but they don't seem specific to my case.
Context
We have Python-Django backend and a VueJS frontend, each in a repository, with Gitlab-CI configured and deploy using Portainer (using a stack).
A commit in the production branch of each repository follows this path:
- commit
- gitlab-ci pipeline:
- build docker image
- test image (frontend is tested against deployed backend)
- tag image as production:latest
- push image back to gitlab registry
- webhook the corresponding service (frontend/backend) in portainer to update the deployed image
- portainer:
- pull image
- deploy
Problems
Deployment synchronization
Imagine we're doing a major change in both frontend and backend, and both will become incompatible with previous versions. So the new versions must be deployed simultaneously.
In our current setup we have to first deploy the backend (what will break the deployed frontend) and then deploy the new frontend, fixing production, but with a "down" period.
Branch dependency for tests
Sometimes when we develop branch feature-1 in the frontend, it must be tested against branch feature-1 from the backend.
In our current setup all the commits in the frontend are tested against the deployed backend (to avoid replicating the backend in CI, only the production API address is used), resulting in false tests results in such cases.
Backend integration tests
When a commit is done to the backend, it can break the frontend.
Currently the backend isn't tested against the frontend (only the other way).
Possible Solutions
For the deployment synchronization problem I thought about creating another repository that would have only one file specifying the versions for frontend and backend that should be deployed. A commit in this repository would result in both Portanier' services webhooks being "curled" for update (backend and frontend). This doesn't guarantee the simultaneous update (one may fail in Portainer and there would be no rollback), but it would be better than current setup.
I'm not sure about what should be used to specify versions here: commit hash, git tag, branch, docker image version... The last maybe avoids having to rebuild and test images, but I think images name and versions are fixed in Portainer' stacks definition, and not easy to update automatically.
For the branch dependency tests I thought about having a file in each repository (frontend and backend) specifying which branch from the backend/frontend to test against. But the CI for each repository would have to replicate the whole deploy environment (running a new backend and frontend to test each frontend commit, for example). This would also allow backend integration tests. Since we're using Docker, that's not very complicated, but will take extra time for each CI pipeline... Also, when the first repository (frontend or backend) is committed, it'll reference a still non existent branch in the other repository, and fail...
These solutions seem awkward to me, specially if these are problems common to CI/CD with Docker. And it can get even uglier when we add more repositories to the mix.
Alternatives?
Thanks for the attention!
(edit: for curious, my current setup was based on this article)
docker continuous-integration gitlab-ci continuous-deployment portainer
I'll describe my setup to make the problems less abstract, but they don't seem specific to my case.
Context
We have Python-Django backend and a VueJS frontend, each in a repository, with Gitlab-CI configured and deploy using Portainer (using a stack).
A commit in the production branch of each repository follows this path:
- commit
- gitlab-ci pipeline:
- build docker image
- test image (frontend is tested against deployed backend)
- tag image as production:latest
- push image back to gitlab registry
- webhook the corresponding service (frontend/backend) in portainer to update the deployed image
- portainer:
- pull image
- deploy
Problems
Deployment synchronization
Imagine we're doing a major change in both frontend and backend, and both will become incompatible with previous versions. So the new versions must be deployed simultaneously.
In our current setup we have to first deploy the backend (what will break the deployed frontend) and then deploy the new frontend, fixing production, but with a "down" period.
Branch dependency for tests
Sometimes when we develop branch feature-1 in the frontend, it must be tested against branch feature-1 from the backend.
In our current setup all the commits in the frontend are tested against the deployed backend (to avoid replicating the backend in CI, only the production API address is used), resulting in false tests results in such cases.
Backend integration tests
When a commit is done to the backend, it can break the frontend.
Currently the backend isn't tested against the frontend (only the other way).
Possible Solutions
For the deployment synchronization problem I thought about creating another repository that would have only one file specifying the versions for frontend and backend that should be deployed. A commit in this repository would result in both Portanier' services webhooks being "curled" for update (backend and frontend). This doesn't guarantee the simultaneous update (one may fail in Portainer and there would be no rollback), but it would be better than current setup.
I'm not sure about what should be used to specify versions here: commit hash, git tag, branch, docker image version... The last maybe avoids having to rebuild and test images, but I think images name and versions are fixed in Portainer' stacks definition, and not easy to update automatically.
For the branch dependency tests I thought about having a file in each repository (frontend and backend) specifying which branch from the backend/frontend to test against. But the CI for each repository would have to replicate the whole deploy environment (running a new backend and frontend to test each frontend commit, for example). This would also allow backend integration tests. Since we're using Docker, that's not very complicated, but will take extra time for each CI pipeline... Also, when the first repository (frontend or backend) is committed, it'll reference a still non existent branch in the other repository, and fail...
These solutions seem awkward to me, specially if these are problems common to CI/CD with Docker. And it can get even uglier when we add more repositories to the mix.
Alternatives?
Thanks for the attention!
(edit: for curious, my current setup was based on this article)
docker continuous-integration gitlab-ci continuous-deployment portainer
docker continuous-integration gitlab-ci continuous-deployment portainer
edited Nov 22 '18 at 9:39
asked Nov 21 '18 at 12:27
someone
396
396
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Deployment synchronization
Imagine we're doing a major change in both frontend and backend, and both will become incompatible with previous versions. So the new versions must be deployed simultaneously.
In our current setup we have to first deploy the backend (what will break the deployed frontend) and then deploy the new frontend, fixing production, but with a "down" period.
I'm not a portainer user, but maybe you could rely on some docker-compose.yml
file or so, gathering both the version of the backend and the frontend? in this case they could be updated at the same time…
Indeed according to portainer/portainer#1963 and this doc page, portainer seems to support both docker-compose and swarm stacks.
Also, docker swarm provides some features to perform service upgrade without downtime, as documented in this blog, but I don't know to what extent this can be configured in portainer.
Possible Solutions
I'm not sure about what should be used to specify versions here: commit hash, git tag, branch, docker image version... The last maybe avoids having to rebuild and test images, but I think images name and versions are fixed in Portainer' stacks definition, and not easy to update automatically.
While commit hashes are precise identifiers, they are probably not convenient enough to identify incompatible versions. So you may want to rely on semantic versioning using tags (and/or branches) on your Git backend repo.
Then, you may tag the corresponding Docker images accordingly, introducing some synonymous tags if need be. For example, assuming the backend has been released with versions 1.0.0, 1.0.1, 1.1.0, 1.1.1, 1.2.0, 1.2.1, 1.2.2
, a standard practice consists in tagging the Docker images like this:
project/backend:2.0.2
=project/backend:2.0
=project/backend:2
project/backend:2.0.1
project/backend:2.0.0
project/backend:1.1.1
=project/backend:1.1
=project/backend:1
project/backend:1.1.0
project/backend:1.0.1
=project/backend:1.0
project/backend:1.0.0
(removing old images if need be)
Backend integration tests
Currently the backend isn't tested against the frontend (only the other way).
OK but I guess your approach is fairly standard (the frontend depends on the backend, not the other way around).
Anyway, I recall that even if the system under test is a front-end, it may be worth it to implement unit tests (which are less costly to develop and run than integration tests) so that a first stage in the pipeline quickly runs these unit tests, before triggering the necessary integration tests.
Branch dependency for tests
In our current setup all the commits in the frontend are tested against the deployed backend (to avoid replicating the backend in CI, only the production API address is used), resulting in false tests results in such cases.
This may be not flexible enough: in general, CI/CD assumes the integration tests are run using a dedicated backend instance ("dev" server or "pre-prod" server), and if all integration tests and system tests pass, the image is deployed to the "prod" server (and monitored, etc.)
I see from your post that you are using GitLab CI, which has some native Docker support, so maybe this could be implemented easily.
A couple of hints:
Assume the backend has been modified in a non-backward compatible version, and the corresponding Docker image is available in a registry (e.g. that of GitLab CI). Then you could just change the specification of that image in the frontend configuration (e.g., replacing
project/backend:1
withproject/backend:2
or so in the GitLab CI conffile).Your backend is probably implemented as a REST Web Service, in which case you might also want to add a version prefix in your URL, so that when you switch from
project/backend:1
toproject/backend:2
(with incompatible changes), both versions could be deployed at the same time if need be, to the URLshttps://example.com/api/v1/…
andhttps://example.com/api/v2/…
Also, beyond the solution to have only two repos with CI/CD (backend tested apart, and frontend tested against the relevant version of the backend), the solution you suggested in the first place may also be considered:
For the deployment synchronization problem I thought about creating another repository that would have only one file specifying the versions for frontend and backend that should be deployed. A commit in this repository would result in both Portanier' services webhooks being "curled" for update (backend and frontend). This doesn't guarantee the simultaneous update (one may fail in Portainer and there would be no rollback), but it would be better than current setup.
You could slightly modify this approach to avoid one such deployment failure: you could add some CI setup to that third repo, that would only contain a docker-compose.yml
file or so, and move the integration tests from the frontend CI to that "compose" CI…
(FYI this approach is similar to the one suggested in this DigitalOcean tutorial, where the integration testing is achieved thanks to some docker-compose.test.yml
file.)
(1/2) Thanks for the great reply! We are already using a compose config to setup our stack in Portainer (AFAIK it uses docker swarm under the hood, so the deploys are already without downtime [when everything goes smooth]). I'm just not sure how easy it's to update the compose config programmatically. But I'll investigate more. github.com/portainer/portainer/issues/1753 Even if the backend doesn't depend on the frontend, I'm afraid we do need backend integration tests to avoid committing to it and deploying a backend that breaks the production frontend.
– someone
Nov 22 '18 at 11:34
(2/2) At Gitlab-CI, we're already using Docker (dind), but only to build and run the code in that repository (e.g.: the frontend CI only build the image, run and test it for the frontend code). At last, moving the integration tests together with a "whole system" docker-compose.yml to the third repository seems a nice move!
– someone
Nov 22 '18 at 11:34
OK thanks for your feedback!
– ErikMD
Nov 22 '18 at 12:42
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53412038%2fin-ci-cd-how-to-manage-dependency-between-frontend-and-backend%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Deployment synchronization
Imagine we're doing a major change in both frontend and backend, and both will become incompatible with previous versions. So the new versions must be deployed simultaneously.
In our current setup we have to first deploy the backend (what will break the deployed frontend) and then deploy the new frontend, fixing production, but with a "down" period.
I'm not a portainer user, but maybe you could rely on some docker-compose.yml
file or so, gathering both the version of the backend and the frontend? in this case they could be updated at the same time…
Indeed according to portainer/portainer#1963 and this doc page, portainer seems to support both docker-compose and swarm stacks.
Also, docker swarm provides some features to perform service upgrade without downtime, as documented in this blog, but I don't know to what extent this can be configured in portainer.
Possible Solutions
I'm not sure about what should be used to specify versions here: commit hash, git tag, branch, docker image version... The last maybe avoids having to rebuild and test images, but I think images name and versions are fixed in Portainer' stacks definition, and not easy to update automatically.
While commit hashes are precise identifiers, they are probably not convenient enough to identify incompatible versions. So you may want to rely on semantic versioning using tags (and/or branches) on your Git backend repo.
Then, you may tag the corresponding Docker images accordingly, introducing some synonymous tags if need be. For example, assuming the backend has been released with versions 1.0.0, 1.0.1, 1.1.0, 1.1.1, 1.2.0, 1.2.1, 1.2.2
, a standard practice consists in tagging the Docker images like this:
project/backend:2.0.2
=project/backend:2.0
=project/backend:2
project/backend:2.0.1
project/backend:2.0.0
project/backend:1.1.1
=project/backend:1.1
=project/backend:1
project/backend:1.1.0
project/backend:1.0.1
=project/backend:1.0
project/backend:1.0.0
(removing old images if need be)
Backend integration tests
Currently the backend isn't tested against the frontend (only the other way).
OK but I guess your approach is fairly standard (the frontend depends on the backend, not the other way around).
Anyway, I recall that even if the system under test is a front-end, it may be worth it to implement unit tests (which are less costly to develop and run than integration tests) so that a first stage in the pipeline quickly runs these unit tests, before triggering the necessary integration tests.
Branch dependency for tests
In our current setup all the commits in the frontend are tested against the deployed backend (to avoid replicating the backend in CI, only the production API address is used), resulting in false tests results in such cases.
This may be not flexible enough: in general, CI/CD assumes the integration tests are run using a dedicated backend instance ("dev" server or "pre-prod" server), and if all integration tests and system tests pass, the image is deployed to the "prod" server (and monitored, etc.)
I see from your post that you are using GitLab CI, which has some native Docker support, so maybe this could be implemented easily.
A couple of hints:
Assume the backend has been modified in a non-backward compatible version, and the corresponding Docker image is available in a registry (e.g. that of GitLab CI). Then you could just change the specification of that image in the frontend configuration (e.g., replacing
project/backend:1
withproject/backend:2
or so in the GitLab CI conffile).Your backend is probably implemented as a REST Web Service, in which case you might also want to add a version prefix in your URL, so that when you switch from
project/backend:1
toproject/backend:2
(with incompatible changes), both versions could be deployed at the same time if need be, to the URLshttps://example.com/api/v1/…
andhttps://example.com/api/v2/…
Also, beyond the solution to have only two repos with CI/CD (backend tested apart, and frontend tested against the relevant version of the backend), the solution you suggested in the first place may also be considered:
For the deployment synchronization problem I thought about creating another repository that would have only one file specifying the versions for frontend and backend that should be deployed. A commit in this repository would result in both Portanier' services webhooks being "curled" for update (backend and frontend). This doesn't guarantee the simultaneous update (one may fail in Portainer and there would be no rollback), but it would be better than current setup.
You could slightly modify this approach to avoid one such deployment failure: you could add some CI setup to that third repo, that would only contain a docker-compose.yml
file or so, and move the integration tests from the frontend CI to that "compose" CI…
(FYI this approach is similar to the one suggested in this DigitalOcean tutorial, where the integration testing is achieved thanks to some docker-compose.test.yml
file.)
(1/2) Thanks for the great reply! We are already using a compose config to setup our stack in Portainer (AFAIK it uses docker swarm under the hood, so the deploys are already without downtime [when everything goes smooth]). I'm just not sure how easy it's to update the compose config programmatically. But I'll investigate more. github.com/portainer/portainer/issues/1753 Even if the backend doesn't depend on the frontend, I'm afraid we do need backend integration tests to avoid committing to it and deploying a backend that breaks the production frontend.
– someone
Nov 22 '18 at 11:34
(2/2) At Gitlab-CI, we're already using Docker (dind), but only to build and run the code in that repository (e.g.: the frontend CI only build the image, run and test it for the frontend code). At last, moving the integration tests together with a "whole system" docker-compose.yml to the third repository seems a nice move!
– someone
Nov 22 '18 at 11:34
OK thanks for your feedback!
– ErikMD
Nov 22 '18 at 12:42
add a comment |
Deployment synchronization
Imagine we're doing a major change in both frontend and backend, and both will become incompatible with previous versions. So the new versions must be deployed simultaneously.
In our current setup we have to first deploy the backend (what will break the deployed frontend) and then deploy the new frontend, fixing production, but with a "down" period.
I'm not a portainer user, but maybe you could rely on some docker-compose.yml
file or so, gathering both the version of the backend and the frontend? in this case they could be updated at the same time…
Indeed according to portainer/portainer#1963 and this doc page, portainer seems to support both docker-compose and swarm stacks.
Also, docker swarm provides some features to perform service upgrade without downtime, as documented in this blog, but I don't know to what extent this can be configured in portainer.
Possible Solutions
I'm not sure about what should be used to specify versions here: commit hash, git tag, branch, docker image version... The last maybe avoids having to rebuild and test images, but I think images name and versions are fixed in Portainer' stacks definition, and not easy to update automatically.
While commit hashes are precise identifiers, they are probably not convenient enough to identify incompatible versions. So you may want to rely on semantic versioning using tags (and/or branches) on your Git backend repo.
Then, you may tag the corresponding Docker images accordingly, introducing some synonymous tags if need be. For example, assuming the backend has been released with versions 1.0.0, 1.0.1, 1.1.0, 1.1.1, 1.2.0, 1.2.1, 1.2.2
, a standard practice consists in tagging the Docker images like this:
project/backend:2.0.2
=project/backend:2.0
=project/backend:2
project/backend:2.0.1
project/backend:2.0.0
project/backend:1.1.1
=project/backend:1.1
=project/backend:1
project/backend:1.1.0
project/backend:1.0.1
=project/backend:1.0
project/backend:1.0.0
(removing old images if need be)
Backend integration tests
Currently the backend isn't tested against the frontend (only the other way).
OK but I guess your approach is fairly standard (the frontend depends on the backend, not the other way around).
Anyway, I recall that even if the system under test is a front-end, it may be worth it to implement unit tests (which are less costly to develop and run than integration tests) so that a first stage in the pipeline quickly runs these unit tests, before triggering the necessary integration tests.
Branch dependency for tests
In our current setup all the commits in the frontend are tested against the deployed backend (to avoid replicating the backend in CI, only the production API address is used), resulting in false tests results in such cases.
This may be not flexible enough: in general, CI/CD assumes the integration tests are run using a dedicated backend instance ("dev" server or "pre-prod" server), and if all integration tests and system tests pass, the image is deployed to the "prod" server (and monitored, etc.)
I see from your post that you are using GitLab CI, which has some native Docker support, so maybe this could be implemented easily.
A couple of hints:
Assume the backend has been modified in a non-backward compatible version, and the corresponding Docker image is available in a registry (e.g. that of GitLab CI). Then you could just change the specification of that image in the frontend configuration (e.g., replacing
project/backend:1
withproject/backend:2
or so in the GitLab CI conffile).Your backend is probably implemented as a REST Web Service, in which case you might also want to add a version prefix in your URL, so that when you switch from
project/backend:1
toproject/backend:2
(with incompatible changes), both versions could be deployed at the same time if need be, to the URLshttps://example.com/api/v1/…
andhttps://example.com/api/v2/…
Also, beyond the solution to have only two repos with CI/CD (backend tested apart, and frontend tested against the relevant version of the backend), the solution you suggested in the first place may also be considered:
For the deployment synchronization problem I thought about creating another repository that would have only one file specifying the versions for frontend and backend that should be deployed. A commit in this repository would result in both Portanier' services webhooks being "curled" for update (backend and frontend). This doesn't guarantee the simultaneous update (one may fail in Portainer and there would be no rollback), but it would be better than current setup.
You could slightly modify this approach to avoid one such deployment failure: you could add some CI setup to that third repo, that would only contain a docker-compose.yml
file or so, and move the integration tests from the frontend CI to that "compose" CI…
(FYI this approach is similar to the one suggested in this DigitalOcean tutorial, where the integration testing is achieved thanks to some docker-compose.test.yml
file.)
(1/2) Thanks for the great reply! We are already using a compose config to setup our stack in Portainer (AFAIK it uses docker swarm under the hood, so the deploys are already without downtime [when everything goes smooth]). I'm just not sure how easy it's to update the compose config programmatically. But I'll investigate more. github.com/portainer/portainer/issues/1753 Even if the backend doesn't depend on the frontend, I'm afraid we do need backend integration tests to avoid committing to it and deploying a backend that breaks the production frontend.
– someone
Nov 22 '18 at 11:34
(2/2) At Gitlab-CI, we're already using Docker (dind), but only to build and run the code in that repository (e.g.: the frontend CI only build the image, run and test it for the frontend code). At last, moving the integration tests together with a "whole system" docker-compose.yml to the third repository seems a nice move!
– someone
Nov 22 '18 at 11:34
OK thanks for your feedback!
– ErikMD
Nov 22 '18 at 12:42
add a comment |
Deployment synchronization
Imagine we're doing a major change in both frontend and backend, and both will become incompatible with previous versions. So the new versions must be deployed simultaneously.
In our current setup we have to first deploy the backend (what will break the deployed frontend) and then deploy the new frontend, fixing production, but with a "down" period.
I'm not a portainer user, but maybe you could rely on some docker-compose.yml
file or so, gathering both the version of the backend and the frontend? in this case they could be updated at the same time…
Indeed according to portainer/portainer#1963 and this doc page, portainer seems to support both docker-compose and swarm stacks.
Also, docker swarm provides some features to perform service upgrade without downtime, as documented in this blog, but I don't know to what extent this can be configured in portainer.
Possible Solutions
I'm not sure about what should be used to specify versions here: commit hash, git tag, branch, docker image version... The last maybe avoids having to rebuild and test images, but I think images name and versions are fixed in Portainer' stacks definition, and not easy to update automatically.
While commit hashes are precise identifiers, they are probably not convenient enough to identify incompatible versions. So you may want to rely on semantic versioning using tags (and/or branches) on your Git backend repo.
Then, you may tag the corresponding Docker images accordingly, introducing some synonymous tags if need be. For example, assuming the backend has been released with versions 1.0.0, 1.0.1, 1.1.0, 1.1.1, 1.2.0, 1.2.1, 1.2.2
, a standard practice consists in tagging the Docker images like this:
project/backend:2.0.2
=project/backend:2.0
=project/backend:2
project/backend:2.0.1
project/backend:2.0.0
project/backend:1.1.1
=project/backend:1.1
=project/backend:1
project/backend:1.1.0
project/backend:1.0.1
=project/backend:1.0
project/backend:1.0.0
(removing old images if need be)
Backend integration tests
Currently the backend isn't tested against the frontend (only the other way).
OK but I guess your approach is fairly standard (the frontend depends on the backend, not the other way around).
Anyway, I recall that even if the system under test is a front-end, it may be worth it to implement unit tests (which are less costly to develop and run than integration tests) so that a first stage in the pipeline quickly runs these unit tests, before triggering the necessary integration tests.
Branch dependency for tests
In our current setup all the commits in the frontend are tested against the deployed backend (to avoid replicating the backend in CI, only the production API address is used), resulting in false tests results in such cases.
This may be not flexible enough: in general, CI/CD assumes the integration tests are run using a dedicated backend instance ("dev" server or "pre-prod" server), and if all integration tests and system tests pass, the image is deployed to the "prod" server (and monitored, etc.)
I see from your post that you are using GitLab CI, which has some native Docker support, so maybe this could be implemented easily.
A couple of hints:
Assume the backend has been modified in a non-backward compatible version, and the corresponding Docker image is available in a registry (e.g. that of GitLab CI). Then you could just change the specification of that image in the frontend configuration (e.g., replacing
project/backend:1
withproject/backend:2
or so in the GitLab CI conffile).Your backend is probably implemented as a REST Web Service, in which case you might also want to add a version prefix in your URL, so that when you switch from
project/backend:1
toproject/backend:2
(with incompatible changes), both versions could be deployed at the same time if need be, to the URLshttps://example.com/api/v1/…
andhttps://example.com/api/v2/…
Also, beyond the solution to have only two repos with CI/CD (backend tested apart, and frontend tested against the relevant version of the backend), the solution you suggested in the first place may also be considered:
For the deployment synchronization problem I thought about creating another repository that would have only one file specifying the versions for frontend and backend that should be deployed. A commit in this repository would result in both Portanier' services webhooks being "curled" for update (backend and frontend). This doesn't guarantee the simultaneous update (one may fail in Portainer and there would be no rollback), but it would be better than current setup.
You could slightly modify this approach to avoid one such deployment failure: you could add some CI setup to that third repo, that would only contain a docker-compose.yml
file or so, and move the integration tests from the frontend CI to that "compose" CI…
(FYI this approach is similar to the one suggested in this DigitalOcean tutorial, where the integration testing is achieved thanks to some docker-compose.test.yml
file.)
Deployment synchronization
Imagine we're doing a major change in both frontend and backend, and both will become incompatible with previous versions. So the new versions must be deployed simultaneously.
In our current setup we have to first deploy the backend (what will break the deployed frontend) and then deploy the new frontend, fixing production, but with a "down" period.
I'm not a portainer user, but maybe you could rely on some docker-compose.yml
file or so, gathering both the version of the backend and the frontend? in this case they could be updated at the same time…
Indeed according to portainer/portainer#1963 and this doc page, portainer seems to support both docker-compose and swarm stacks.
Also, docker swarm provides some features to perform service upgrade without downtime, as documented in this blog, but I don't know to what extent this can be configured in portainer.
Possible Solutions
I'm not sure about what should be used to specify versions here: commit hash, git tag, branch, docker image version... The last maybe avoids having to rebuild and test images, but I think images name and versions are fixed in Portainer' stacks definition, and not easy to update automatically.
While commit hashes are precise identifiers, they are probably not convenient enough to identify incompatible versions. So you may want to rely on semantic versioning using tags (and/or branches) on your Git backend repo.
Then, you may tag the corresponding Docker images accordingly, introducing some synonymous tags if need be. For example, assuming the backend has been released with versions 1.0.0, 1.0.1, 1.1.0, 1.1.1, 1.2.0, 1.2.1, 1.2.2
, a standard practice consists in tagging the Docker images like this:
project/backend:2.0.2
=project/backend:2.0
=project/backend:2
project/backend:2.0.1
project/backend:2.0.0
project/backend:1.1.1
=project/backend:1.1
=project/backend:1
project/backend:1.1.0
project/backend:1.0.1
=project/backend:1.0
project/backend:1.0.0
(removing old images if need be)
Backend integration tests
Currently the backend isn't tested against the frontend (only the other way).
OK but I guess your approach is fairly standard (the frontend depends on the backend, not the other way around).
Anyway, I recall that even if the system under test is a front-end, it may be worth it to implement unit tests (which are less costly to develop and run than integration tests) so that a first stage in the pipeline quickly runs these unit tests, before triggering the necessary integration tests.
Branch dependency for tests
In our current setup all the commits in the frontend are tested against the deployed backend (to avoid replicating the backend in CI, only the production API address is used), resulting in false tests results in such cases.
This may be not flexible enough: in general, CI/CD assumes the integration tests are run using a dedicated backend instance ("dev" server or "pre-prod" server), and if all integration tests and system tests pass, the image is deployed to the "prod" server (and monitored, etc.)
I see from your post that you are using GitLab CI, which has some native Docker support, so maybe this could be implemented easily.
A couple of hints:
Assume the backend has been modified in a non-backward compatible version, and the corresponding Docker image is available in a registry (e.g. that of GitLab CI). Then you could just change the specification of that image in the frontend configuration (e.g., replacing
project/backend:1
withproject/backend:2
or so in the GitLab CI conffile).Your backend is probably implemented as a REST Web Service, in which case you might also want to add a version prefix in your URL, so that when you switch from
project/backend:1
toproject/backend:2
(with incompatible changes), both versions could be deployed at the same time if need be, to the URLshttps://example.com/api/v1/…
andhttps://example.com/api/v2/…
Also, beyond the solution to have only two repos with CI/CD (backend tested apart, and frontend tested against the relevant version of the backend), the solution you suggested in the first place may also be considered:
For the deployment synchronization problem I thought about creating another repository that would have only one file specifying the versions for frontend and backend that should be deployed. A commit in this repository would result in both Portanier' services webhooks being "curled" for update (backend and frontend). This doesn't guarantee the simultaneous update (one may fail in Portainer and there would be no rollback), but it would be better than current setup.
You could slightly modify this approach to avoid one such deployment failure: you could add some CI setup to that third repo, that would only contain a docker-compose.yml
file or so, and move the integration tests from the frontend CI to that "compose" CI…
(FYI this approach is similar to the one suggested in this DigitalOcean tutorial, where the integration testing is achieved thanks to some docker-compose.test.yml
file.)
edited Nov 21 '18 at 15:36
answered Nov 21 '18 at 14:45
ErikMD
2,0991319
2,0991319
(1/2) Thanks for the great reply! We are already using a compose config to setup our stack in Portainer (AFAIK it uses docker swarm under the hood, so the deploys are already without downtime [when everything goes smooth]). I'm just not sure how easy it's to update the compose config programmatically. But I'll investigate more. github.com/portainer/portainer/issues/1753 Even if the backend doesn't depend on the frontend, I'm afraid we do need backend integration tests to avoid committing to it and deploying a backend that breaks the production frontend.
– someone
Nov 22 '18 at 11:34
(2/2) At Gitlab-CI, we're already using Docker (dind), but only to build and run the code in that repository (e.g.: the frontend CI only build the image, run and test it for the frontend code). At last, moving the integration tests together with a "whole system" docker-compose.yml to the third repository seems a nice move!
– someone
Nov 22 '18 at 11:34
OK thanks for your feedback!
– ErikMD
Nov 22 '18 at 12:42
add a comment |
(1/2) Thanks for the great reply! We are already using a compose config to setup our stack in Portainer (AFAIK it uses docker swarm under the hood, so the deploys are already without downtime [when everything goes smooth]). I'm just not sure how easy it's to update the compose config programmatically. But I'll investigate more. github.com/portainer/portainer/issues/1753 Even if the backend doesn't depend on the frontend, I'm afraid we do need backend integration tests to avoid committing to it and deploying a backend that breaks the production frontend.
– someone
Nov 22 '18 at 11:34
(2/2) At Gitlab-CI, we're already using Docker (dind), but only to build and run the code in that repository (e.g.: the frontend CI only build the image, run and test it for the frontend code). At last, moving the integration tests together with a "whole system" docker-compose.yml to the third repository seems a nice move!
– someone
Nov 22 '18 at 11:34
OK thanks for your feedback!
– ErikMD
Nov 22 '18 at 12:42
(1/2) Thanks for the great reply! We are already using a compose config to setup our stack in Portainer (AFAIK it uses docker swarm under the hood, so the deploys are already without downtime [when everything goes smooth]). I'm just not sure how easy it's to update the compose config programmatically. But I'll investigate more. github.com/portainer/portainer/issues/1753 Even if the backend doesn't depend on the frontend, I'm afraid we do need backend integration tests to avoid committing to it and deploying a backend that breaks the production frontend.
– someone
Nov 22 '18 at 11:34
(1/2) Thanks for the great reply! We are already using a compose config to setup our stack in Portainer (AFAIK it uses docker swarm under the hood, so the deploys are already without downtime [when everything goes smooth]). I'm just not sure how easy it's to update the compose config programmatically. But I'll investigate more. github.com/portainer/portainer/issues/1753 Even if the backend doesn't depend on the frontend, I'm afraid we do need backend integration tests to avoid committing to it and deploying a backend that breaks the production frontend.
– someone
Nov 22 '18 at 11:34
(2/2) At Gitlab-CI, we're already using Docker (dind), but only to build and run the code in that repository (e.g.: the frontend CI only build the image, run and test it for the frontend code). At last, moving the integration tests together with a "whole system" docker-compose.yml to the third repository seems a nice move!
– someone
Nov 22 '18 at 11:34
(2/2) At Gitlab-CI, we're already using Docker (dind), but only to build and run the code in that repository (e.g.: the frontend CI only build the image, run and test it for the frontend code). At last, moving the integration tests together with a "whole system" docker-compose.yml to the third repository seems a nice move!
– someone
Nov 22 '18 at 11:34
OK thanks for your feedback!
– ErikMD
Nov 22 '18 at 12:42
OK thanks for your feedback!
– ErikMD
Nov 22 '18 at 12:42
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53412038%2fin-ci-cd-how-to-manage-dependency-between-frontend-and-backend%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown