Azure
A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.
1,014 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello all,
I have a Bicep configuration with 'Microsoft.KubernetesConfiguration/fluxConfigurations@2023-05-01' specified. Here is my definition:
resource fluxConfig 'Microsoft.KubernetesConfiguration/fluxConfigurations@2023-05-01' = {
scope: aksCluster
name: 'flux-config'
properties: {
gitRepository: {
localAuthRef: 'git-auth-secret'
repositoryRef: {
branch: 'main'
}
syncIntervalInSeconds: 300
timeoutInSeconds: 300
url: 'https://github.com/xxx/flux-infra.git'
}
kustomizations: {
apps: {
path: './apps/staging'
prune: true
timeoutInSeconds: 300
wait: true
}
}
namespace: 'flux-system'
sourceKind: 'GitRepository'
}
}
When I attempt to deploy my configuration, the deployment runs for about an hour before timing out. No additional information is provided by the error.
I am not sure how I should proceed with this issue since no logs indicate what operation is getting stuck. What should I check to help provide insights into this issue? Any help is appreciated! Thanks!