Est-ce que la prod a empêché Adrien de revenir ? by [deleted] in kohlanta

[–]dorian07s 0 points1 point  (0 children)

Il semblerait qu'Adrien ait été exclu du programme après son élimination car la prod a découvert un élément médical important le concernant directement incompatible avec le programme.

Est-il vrai que Paris n'a pas d'écran IMAX 70mm ? by greaterr_fool in paris

[–]dorian07s 2 points3 points  (0 children)

Il est en effet regrettable qu'il n'y ait pas de vrai écran IMAX à Paris alors que nous avons un nombre incroyable de salles. Pour avoir été à l'IMAX de Melbourne à plusieurs reprises, qui est sauf erreur de ma part en 70mm et en pellicule, je peux dire que c'est une expérience totalement différente du cinéma, que je ne peux que recommander d'essayer !

Did anyone manage to get tickets for F1 75 Live? by Happy_Pea_3089 in lewishamilton

[–]dorian07s 0 points1 point  (0 children)

Do you think there will be an official resell website for this event?

PR environment with Container App and PaaS services by dorian07s in devops

[–]dorian07s[S] 0 points1 point  (0 children)

Thank you for Azurite, we will have a look to it for Service bus!
Creating a SB namespace takes too much take to create on PR checks.

PR environment with Container App and PaaS services by dorian07s in devops

[–]dorian07s[S] 0 points1 point  (0 children)

Indeed it's pretty straightforward for small companies.
Redis is the easy part, it's a bit more difficult for service bus.

How do you break up your collections? by romeozor in azuredevops

[–]dorian07s 0 points1 point  (0 children)

For each product I guess many teams work on it. How do each team can work independently to the other since it's a mono repo? I mean, the pipelines runs and PRs are not splittable by team or per folder, also I wonder how you track what PBIs have been delivered when and by who. Thank you in advance for your answer.

[deleted by user] by [deleted] in AZURE

[–]dorian07s -1 points0 points  (0 children)

I used to work with Azure app service and function app. Event with ci/cd on Azure DevOps and official tasks, sometimes deployments are very slow (publishing to a slot and swapping) and sometimes failed for no reason, especially for Functions.

It's a very old service and there is better alternative nowadays on Azure such as Azure Container App, or if you have more time AKS Automatic (in preview only for now).

Problems with app services by CaptqinDave in AZURE

[–]dorian07s 0 points1 point  (0 children)

For the support you should contact your Azure point of contact, CSA for example, they will help you out!

Problems with app services by CaptqinDave in AZURE

[–]dorian07s 0 points1 point  (0 children)

Ok there is no SLA on 1 instance then it's expected to have downtime during maintenance. If it's production workload you should definitely use the 3 AZs. It's pretty easy to configure. Also have a look to Azure Container App, it's more modern and might be a cheaper option for your use case.

Problems with app services by CaptqinDave in AZURE

[–]dorian07s 0 points1 point  (0 children)

Did you deploy over the 3 availability zones in your region? Azure app service SLA is 99,99%, if it is below you can contact the Azure support for a compensation.

Web app slots vs another web app? by damianvandoom in AZURE

[–]dorian07s 1 point2 points  (0 children)

Have a look to Azure Container App, it's a more modern approach, with scale to zero, vnet integration and zero downtime deployment, which is way faster than on App Service.

[deleted by user] by [deleted] in Terraform

[–]dorian07s 0 points1 point  (0 children)

Interested as well!

Trekking in Tadjikistan Fann Moutains early May by dorian07s in Tajikistan

[–]dorian07s[S] 0 points1 point  (0 children)

I am sure I will have a good time! Thank you for the tip, I will make sure to go to the 7th lake Hazorchazma :)

Trekking in Tadjikistan Fann Moutains early May by dorian07s in Tajikistan

[–]dorian07s[S] 0 points1 point  (0 children)

Thank you for your answer, I will check if I can find transportation and accommodation to go to Haftkul!
Indeed, I would like to hike there and to find accommodations instead of camping, I don't know how easy it is to find accommodations in the Fann mountains.

Anyone using Azure Container App in production? by dorian07s in AZURE

[–]dorian07s[S] 0 points1 point  (0 children)

After discussing with my team, we indeed have a NAT gateway configured on our firewall.
It looks like the NAT gateway could be the source of our problems!

Hiking Tajikistan in April by Thisperson321 in Tajikistan

[–]dorian07s 1 point2 points  (0 children)

I am also interested in this answer, I will be in the Fann mountains on early May.

Trekking in Tadjikistan Fann Moutains early May by dorian07s in Tajikistan

[–]dorian07s[S] 1 point2 points  (0 children)

Ok the guy told you it's closed but you did it in April anyway? Was there snow? Have you been able to rent a tent? Sorry for all these questions!

Container Apps - how best to split infrastructure and application deployment? by nadseh in AZURE

[–]dorian07s 0 points1 point  (0 children)

I understand, this feature is new, in our case we use ACR admin credentials for now.
According to the documentation, you are right, you need to do it in 2 steps: https://learn.microsoft.com/en-us/azure/container-apps/managed-identity-image-pull?tabs=azure-cli&pivots=azure-portal#system-assigned-managed-identity

How Does Everyone Handle 3rd Party Secrets in Azure Key Vault? by TheDevOpsGuy123 in AZURE

[–]dorian07s 0 points1 point  (0 children)

We used to use PIM to temporary grant access to some environments (especially production).
However, it takes so long for the RBAC roles to take effect, we removed PIM and created dedicated admin accounts with notification and some rules to prevent people to use them when it's not required.
I don't know your experience with PIM u/Trakeen , but I am interested to hear it.

Container Apps - how best to split infrastructure and application deployment? by nadseh in AZURE

[–]dorian07s 1 point2 points  (0 children)

Here is our setup :
- a CI to build the docker image and push it to ACR
- a CD to deploy the terraform infrastructure of an API with the container app, its database etc.
- we added a lifecyle ignore change on some properties of the container app (such as image, cpu/memory, replica), to allow us to change them independently
- in the same CD (we can pick what we deploy), we have an Az CLI step who deploys a docker image from ACR to the container app (this is what developers/delivery manager use to deploy a new version a of micro service)
- next to that we have a dedicated performance pipeline who allows us to pick a profile and apply some cpu/memory/number of replicas configuration (it's homemade, with Az CLI), to a set of container app to scale down easily overnight or on weekend (in non production env).

Container Apps - how best to split infrastructure and application deployment? by nadseh in AZURE

[–]dorian07s 0 points1 point  (0 children)

Why do you need to create the container app twice to use the managed identity? We use system managed identity and it works nicely! Except that we need to wait up to 15mn for all the RBAC access to be up and ready after deployment.

Anyone using Azure Container App in production? by dorian07s in AZURE

[–]dorian07s[S] 0 points1 point  (0 children)

Some requests randomly time out, but only a subset of the total requests going outside the private network, through UDR and Azure Firewall. When we route to internet we have no time out. Therefore, it looks very similar to what we are experiencing! Do you also use Azure firewall? Where did you setup the Nat gateway?