Skip to content

Commit 8d7e3eb

Browse files
committed
fix conflict
2 parents 4786ac1 + ed8a04d commit 8d7e3eb

11 files changed

+113
-644
lines changed

articles/application-gateway/for-containers/session-affinity.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: application gateway
55
author: greg-lindsay
66
ms.service: azure-appgw-for-containers
77
ms.topic: concept-article
8-
ms.date: 5/9/2025
8+
ms.date: 5/12/2025
99
ms.author: greglin
1010
---
1111

@@ -78,7 +78,7 @@ EOF
7878

7979
Session affinity can be defined in an [IngressExtension](api-specification-kubernetes.md#alb.networking.azure.io/v1.IngressExtensionSpec) resource. You must specify `sessionAffinity` with an `affinityType` of either `application-cookie` or `managed-cookie`. In this example, we use `application-cookie` as the affinityType and explicitly define a cookie name and lifetime.
8080

81-
Example command to create a new IngressExtension with a defined cookie called `nomnom` with a lifetime of 3,600 seconds (1 hour).
81+
Example command to create a new IngressExtension with a defined cookie called `nomnom` with a lifetime of 3,600 seconds (1 hour) targetting a backend service called `echo`.
8282

8383
```bash
8484
kubectl apply -f - <<EOF
@@ -89,7 +89,7 @@ metadata:
8989
namespace: test-infra
9090
spec:
9191
backendSettings:
92-
- service: echo
92+
- service: echo # replace with your service name
9393
sessionAffinity:
9494
affinityType: "application-cookie"
9595
cookieName: "nomnom"

articles/backup/azure-kubernetes-service-backup-overview.md

Lines changed: 87 additions & 86 deletions
Large diffs are not rendered by default.

articles/dev-box/how-to-write-image-definition-file.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,13 @@ You can create and test image definition files by using VS Code. In addition to
101101

102102
### System Tasks and User Tasks
103103

104-
All tasks in the userTasks section run as the user after the user's first sign-in to the Dev Box. Tasks in the tasks section run as LocalSystem during the Dev Box provisioning stage. Both sections share the same parameters based on the task definitions in your catalog.
104+
You can use both System and User tasks in your image definition file. The tasks section of the image definition file is divided into two sections: tasks and userTasks. Both sections share the same parameters based on the task definitions in your catalog.
105+
106+
- **System tasks**: These tasks run as LocalSystem during the provisioning stage of the dev box. They are typically used for system-level configurations, such as installing software or configuring system settings that require administrative privileges.
105107

106-
### When should I use Run-as-user Tasks?
108+
- **User tasks**: These tasks run as the user after the user's first sign-in to the dev box. They are typically used for user-level configurations, such as installing user-specific applications or configuring user settings under user context. For example, users often prefer to install Python and Visual Studio Code under user context instead of system-wide. Put WinGet tasks in the userTasks section for better results when they don't work under tasks.
107109

108-
Use run-as-user tasks to install software and packages under user context. For example, users often prefer to install Python and Visual Studio Code under user context instead of system-wide. Put WinGet tasks in the userTasks section for better results when they don't work under tasks.
110+
Standard users configuring user customizations can only use user tasks, they cannot use system tasks.
109111

110112
## Optional: Customize your dev box by using existing Desired State Configuration files
111113
Desired State Configuration (DSC) is a management platform in PowerShell that enables you to manage your development environment with configuration as code. You can use DSC to define the desired state of your dev box, including software installations, configurations, and settings.

articles/stream-analytics/.openpublishing.redirection.stream-analytics.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
{
22
"redirections": [
3+
{
4+
"source_path_from_root": "/articles/stream-analytics/custom-deserializer-examples.md",
5+
"redirect_url": "/azure/stream-analytics/stream-analytics-introduction",
6+
"redirect_document_id": false
7+
},
8+
{
9+
"source_path_from_root": "/articles/stream-analytics/custom-deserializer.md",
10+
"redirect_url": "/azure/stream-analytics/stream-analytics-introduction",
11+
"redirect_document_id": false
12+
},
13+
{
14+
"source_path_from_root": "/articles/stream-analytics/visual-studio-code-custom-deserializer.md",
15+
"redirect_url": "/azure/stream-analytics/stream-analytics-introduction",
16+
"redirect_document_id": false
17+
},
318
{
419
"source_path_from_root": "/articles/stream-analytics/stream-analytics-managed-identities-adls.md",
520
"redirect_url": "/azure/stream-analytics/blob-output-managed-identity",

articles/stream-analytics/TOC.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@
4343
href: stream-analytics-real-time-fraud-detection.md
4444
- name: Integrate third party services using Azure Functions
4545
href: stream-analytics-with-azure-functions.md
46-
- name: Create a custom .NET deserializer
47-
href: visual-studio-code-custom-deserializer.md
4846
- name: Create an IoT Edge job
4947
href: ../iot-edge/tutorial-deploy-stream-analytics.md
5048
maintainContext: true
@@ -99,8 +97,6 @@
9997
href: stream-analytics-define-kafka-input.md
10098
- name: Validate input schema
10199
href: input-validation.md
102-
- name: Read inputs in any format using custom deserializers
103-
href: custom-deserializer-examples.md
104100
- name: Output types for a job
105101
items:
106102
- name: Outputs overview
@@ -377,8 +373,6 @@
377373
href: visual-studio-code-local-run.md
378374
- name: Debug queries using job diagram
379375
href: debug-locally-using-job-diagram-vs-code.md
380-
- name: Create and debug .NET custom deserializer
381-
href: visual-studio-code-custom-deserializer.md
382376
- name: JobConfig.json fields
383377
href: job-config-json.md
384378
- name: Visual Studio
@@ -397,8 +391,6 @@
397391
href: stream-analytics-monitor-jobs-use-vs.md
398392
- name: Debug queries using job diagram
399393
href: debug-locally-using-job-diagram.md
400-
- name: Create a custom .NET deserializer
401-
href: custom-deserializer.md
402394
- name: Develop an edge job
403395
href: stream-analytics-tools-for-visual-studio-edge-jobs.md
404396
- name: Run a C# UDF

articles/stream-analytics/custom-deserializer-examples.md

Lines changed: 0 additions & 255 deletions
This file was deleted.

0 commit comments

Comments
 (0)