The Splunk Operator provides support for Splunk app and add-on deployment using the App Framework. The App Framework specification supports configuration management using the Splunk Enterprise cluster and standalone custom resources (CR).
Utilizing the App Framework requires one of the following remote storage providers:
- An Amazon S3 or S3-API-compliant remote object storage location
- Azure blob storage
- The App framework requires read-only access to the path used to host the apps. DO NOT give any other access to the operator to maintain the integrity of data in S3 bucket or Azure blob container.
- Splunk apps and add-ons in a .tgz or .spl archive format.
- Connections to the remote object storage endpoint need to be secured using a minimum version of TLS 1.2.
- A persistent storage volume and path for the Operator Pod. See Add a persistent storage volume to the Operator pod.
- Create role and role-binding for splunk-operator service account, to provide read-only access for S3 credentials.
- The remote object storage credentials provided as a kubernetes secret, or in an IAM role.
- The remote object storage credentials provided as a kubernetes secret.
- OR, Use "Managed Indentity" role assigment to the Azure blob container. See Setup Azure bob access with Managed Indentity
Splunk apps and add-ons deployed or installed outside of the App Framework are not managed, and are unsupported.
Note: For the App Framework to detect that an app or add-on had changed, the updated app must use the same archive file name as the previously deployed one.
Following section shows examples of using App Framework for both remote data storages. First, the examples for S3 based remote object storage are given and then same examples are covered for Azure blob. The examples in both the cases have lot of commonalities and the places they differ are mainly in the values for storageType
, provider
and endpoint
. There are also some differences in the authoriziation setup for using IAM /Managed Identity in both remote data storages.
In this example, you'll deploy a Standalone CR with a remote storage volume, the location of the app archive, and set the installation location for the Splunk Enterprise Pod instance by using scope
.
-
Confirm your remote storage volume path and URL.
-
Configure credentials to connect to remote store by:
- s3 based remote storage:
- Configuring an IAM role for the Operator and Splunk instance pods using a service account or annotations.
- Or, create a Kubernetes Secret Object with the static storage credentials.
- Example:
kubectl create secret generic s3-secret --from-literal=s3_access_key=AKIAIOSFODNN7EXAMPLE --from-literal=s3_secret_key=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLE_S3_SECRET_KEY
- Example:
- azure blob:
- Configuring an IAM through "Managed Indentity" role assigment to give read access for your bucket (azure blob container). For more details see Setup Azure bob access with Managed Indentity
- Or, create a Kubernetes Secret Object with the static storage credentials.
- Example:
kubectl create secret generic azureblob-secret --from-literal=azure_sa_name=mystorageaccount --from-literal=azure_sa_secret_key=wJalrXUtnFEMI/K7MDENG/EXAMPLE_AZURE_SHARED_ACCESS_KEY
- Example:
- s3 based remote storage:
-
Create unique folders on the remote storage volume to use as App Source locations.
- An App Source is a folder on the remote storage volume containing a select subset of Splunk apps and add-ons. In this example, the network and authentication Splunk Apps are split into different folders and named
networkApps
andauthApps
.
- An App Source is a folder on the remote storage volume containing a select subset of Splunk apps and add-ons. In this example, the network and authentication Splunk Apps are split into different folders and named
-
Copy your Splunk App or Add-on archive files to the App Source.
- In this example, the Splunk Apps are located at
bucket-app-framework/Standalone-us/networkAppsLoc/
andbucket-app-framework/Standalone-us/authAppsLoc/
, and are both accessible through the end pointhttps://s3-us-west-2.amazonaws.com
for s3 and https://mystorageaccount.blob.core.windows.net for azure blob.
- In this example, the Splunk Apps are located at
-
Update the standalone CR specification and append the volume, App Source configuration, and scope.
- The scope determines where the apps and add-ons are placed into the Splunk Enterprise instance. For CRs where the Splunk Enterprise instance will run the apps locally, set the
scope: local
The Standalone, Monitoring Console and License Manager CRs always use a local scope.
- The scope determines where the apps and add-ons are placed into the Splunk Enterprise instance. For CRs where the Splunk Enterprise instance will run the apps locally, set the
Example using s3: Standalone.yaml
apiVersion: enterprise.splunk.com/v4
kind: Standalone
metadata:
name: stdln
finalizers:
- enterprise.splunk.com/delete-pvc
spec:
replicas: 1
appRepo:
appsRepoPollIntervalSeconds: 600
defaults:
volumeName: volume_app_repo
scope: local
appSources:
- name: networkApps
location: networkAppsLoc/
- name: authApps
location: authAppsLoc/
volumes:
- name: volume_app_repo
storageType: s3
provider: aws
path: bucket-app-framework/Standalone-us/
endpoint: https://s3-us-west-2.amazonaws.com
region: us-west-2
secretRef: s3-secret
Example using azure blob: Standalone.yaml
apiVersion: enterprise.splunk.com/v4
kind: Standalone
metadata:
name: stdln
finalizers:
- enterprise.splunk.com/delete-pvc
spec:
replicas: 1
appRepo:
appsRepoPollIntervalSeconds: 600
defaults:
volumeName: volume_app_repo
scope: local
appSources:
- name: networkApps
location: networkAppsLoc/
- name: authApps
location: authAppsLoc/
volumes:
- name: volume_app_repo
storageType: blob
provider: azure
path: bucket-app-framework/Standalone-us/
endpoint: https://mystorageaccount.blob.core.windows.net
secretRef: azureblob-secret
- Apply the Custom Resource specification:
kubectl apply -f Standalone.yaml
The App Framework detects the Splunk app or add-on archive files available in the App Source locations, and deploys them to the standalone instance path for local use.
The App Framework maintains a checksum for each app or add-on archive file in the App Source location. The app name and checksum is recorded in the CR, and used to compare the deployed apps to the app archive files in the App Source location. The App Framework will scan for changes to the App Source folders using the polling interval, and deploy any updated apps to the instance. For the App Framework to detect that an app or add-on had changed, the updated app must use the same archive file name as the previously deployed one.
By default, the App Framework polls the remote object storage location for new or changed apps at the appsRepoPollIntervalSeconds
interval. To disable the interval check, and manage app updates manually, see the Manual initiation of app management.
For more information, see the Description of App Framework Specification fields.
This example describes the installation of apps on an Indexer Cluster and Cluster Manager. This is achieved by deploying a ClusterManager CR with a remote storage volume, setting the location of the app archives, and the installation scope to support both local and cluster app path distribution.
-
Confirm your remote storage volume path and URL.
-
Configure credentials to connect to remote store by:
- s3 based remote storage:
- Configuring an IAM role for the Operator and Splunk instance pods using a service account or annotations.
- Or, create a Kubernetes Secret Object with the static storage credentials.
- Example:
kubectl create secret generic s3-secret --from-literal=s3_access_key=AKIAIOSFODNN7EXAMPLE --from-literal=s3_secret_key=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLE_S3_SECRET_KEY
- Example:
- azure blob:
- Configuring an IAM through "Managed Indentity" role assigment to give read access for your bucket (azure blob container). For more details see Setup Azure bob access with Managed Indentity
- Or, create a Kubernetes Secret Object with the static storage credentials.
- Example:
kubectl create secret generic azureblob-secret --from-literal=azure_sa_name=mystorageaccount --from-literal=azure_sa_secret_key=wJalrXUtnFEMI/K7MDENG/EXAMPLE_AZURE_SHARED_ACCESS_KEY
- Example:
- s3 based remote storage:
-
Create unique folders on the remote storage volume to use as App Source locations.
- An App Source is a folder on the remote storage volume containing a select subset of Splunk apps and add-ons. In this example, there are Splunk apps installed and run locally on the cluster manager, and select apps that will be distributed to all cluster peers by the cluster manager.
- The apps are split across three folders named
networkApps
,clusterBase
, andadminApps
. The apps placed intonetworkApps
andclusterBase
are distributed to the cluster peers, but the apps inadminApps
are for local use on the cluster manager instance only.
-
Copy your Splunk app or add-on archive files to the App Source.
- In this example, the Splunk apps for the cluster peers are located at
bucket-app-framework/idxcAndCmApps/networkAppsLoc/
,bucket-app-framework/idxcAndCmApps/clusterBaseLoc/
, and the apps for the cluster manager are located atbucket-app-framework/idxcAndCmApps/adminAppsLoc/
. They are all accessible through the end pointhttps://s3-us-west-2.amazonaws.com
for s3 and https://mystorageaccount.blob.core.windows.net for azure blob.
- In this example, the Splunk apps for the cluster peers are located at
-
Update the ClusterManager CR specification and append the volume, App Source configuration, and scope.
- The scope determines where the apps and add-ons are placed into the Splunk Enterprise instance. For CRs where the Splunk Enterprise instance will deploy the apps to cluster peers, set the
scope: cluster
. The ClusterManager and SearchHeadCluster CRs support both cluster and local scopes. - In this example, the cluster manager will install some apps locally, and deploy other apps to the cluster peers. The App Source folder
adminApps
contains Splunk apps that are installed and run on the cluster manager, and will use a local scope. The apps in the App Source foldersnetworkApps
andclusterBase
will be deployed from the cluster manager to the peers, and will use a cluster scope.
- The scope determines where the apps and add-ons are placed into the Splunk Enterprise instance. For CRs where the Splunk Enterprise instance will deploy the apps to cluster peers, set the
Example using S3: ClusterManager.yaml
apiVersion: enterprise.splunk.com/v4
kind: ClusterManager
metadata:
name: cm
finalizers:
- enterprise.splunk.com/delete-pvc
spec:
appRepo:
appsRepoPollIntervalSeconds: 900
defaults:
volumeName: volume_app_repo_us
scope: cluster
appSources:
- name: networkApps
location: networkAppsLoc/
- name: clusterBase
location: clusterBaseLoc/
- name: adminApps
location: adminAppsLoc/
scope: local
volumes:
- name: volume_app_repo_us
storageType: s3
provider: aws
path: bucket-app-framework/idxcAndCmApps/
endpoint: https://s3-us-west-2.amazonaws.com
region: us-west-2
secretRef: s3-secret
Example using Azure Blob: ClusterManager.yaml
apiVersion: enterprise.splunk.com/v4
kind: ClusterManager
metadata:
name: cm
finalizers:
- enterprise.splunk.com/delete-pvc
spec:
appRepo:
appsRepoPollIntervalSeconds: 900
defaults:
volumeName: volume_app_repo_us
scope: cluster
appSources:
- name: networkApps
location: networkAppsLoc/
- name: clusterBase
location: clusterBaseLoc/
- name: adminApps
location: adminAppsLoc/
scope: local
volumes:
- name: volume_app_repo_us
storageType: blob
provider: azure
path: bucket-app-framework/idxcAndCmApps/
endpoint: https://mystorageaccount.blob.core.windows.net
secretRef: azureblob-secret
- Apply the Custom Resource specification:
kubectl apply -f ClusterManager.yaml
The App Framework detects the Splunk app or add-on archive files available in the App Source locations, and deploys the apps from the adminApps
folder to the cluster manager instance for local use.
The apps in the networkApps
and clusterBase
folders are deployed to the cluster manager for use on the cluster peers. The cluster manager is responsible for deploying those apps to the cluster peers.
Note: The Splunk cluster peer restarts are triggered by the contents of the Splunk apps deployed, and are not initiated by the App Framework.
The App Framework maintains a checksum for each app or add-on archive file in the App Source location. The app name and checksum is recorded in the CR, and used to compare the deployed apps to the app archive files in the App Source location. The App Framework will scan for changes to the App Source folders using the polling interval, and deploy any updated apps to the instance. For the App Framework to detect that an app or add-on had changed, the updated app must use the same archive file name as the previously deployed one.
By default, the App Framework polls the remote object storage location for new or changed apps at the appsRepoPollIntervalSeconds
interval. To disable the interval check, and manage app updates manually, see the Manual initiation of app management.
For more information, see the Description of App Framework Specification fields
This example describes the installation of apps on the Deployer and the Search Head Cluster. This is achieved by deploying a SearchHeadCluster CR with a storage volume, the location of the app archives, and set the installation scope to support both local and cluster app distribution.
-
Confirm your remote storage volume path and URL.
-
Configure credentials to connect to remote store by:
- s3 based remote storage:
- Configuring an IAM role for the Operator and Splunk instance pods using a service account or annotations.
- Or, create a Kubernetes Secret Object with the static storage credentials.
- Example:
kubectl create secret generic s3-secret --from-literal=s3_access_key=AKIAIOSFODNN7EXAMPLE --from-literal=s3_secret_key=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLE_S3_SECRET_KEY
- Example:
- azure blob:
- Configuring an IAM through "Managed Indentity" role assigment to give read access for your bucket (azure blob container). For more details see Setup Azure bob access with Managed Indentity
- Or, create a Kubernetes Secret Object with the static storage credentials.
- Example:
kubectl create secret generic azureblob-secret --from-literal=azure_sa_name=mystorageaccount --from-literal=azure_sa_secret_key=wJalrXUtnFEMI/K7MDENG/EXAMPLE_AZURE_SHARED_ACCESS_KEY
- Example:
- s3 based remote storage:
-
Create unique folders on the remote storage volume to use as App Source locations.
- An App Source is a folder on the remote storage volume containing a select subset of Splunk apps and add-ons. In this example, there are Splunk apps installed and run locally on the Deployer, and select apps that will be distributed to all cluster search heads by the Deployer.
- The apps are split across three folders named
searchApps
,machineLearningApps
andadminApps
. The apps placed intosearchApps
andmachineLearningApps
are distributed to the search heads, but the apps inadminApps
are for local use on the Deployer instance only.
-
Copy your Splunk app or add-on archive files to the App Source.
- In this example, the Splunk apps for the search heads are located at
bucket-app-framework/shcLoc-us/searchAppsLoc/
,bucket-app-framework/shcLoc-us/machineLearningAppsLoc/
, and the apps for the Deployer are located atbucket-app-framework/shcLoc-us/adminAppsLoc/
. They are all accessible through the end pointhttps://s3-us-west-2.amazonaws.com
for s3 and https://mystorageaccount.blob.core.windows.net for azure blob.
- In this example, the Splunk apps for the search heads are located at
-
Update the SearchHeadCluster CR specification, and append the volume, App Source configuration, and scope.
- The scope determines where the apps and add-ons are placed into the Splunk Enterprise instance.
- For CRs where the Splunk Enterprise instance will deploy the apps to search heads, set the
scope:cluster
. The ClusterManager and SearchHeadCluster CRs support both cluster and local scopes.
- For CRs where the Splunk Enterprise instance will deploy the apps to search heads, set the
- In this example, the Deployer will run some apps locally, and deploy other apps to the clustered search heads. The App Source folder
adminApps
contains Splunk apps that are installed and run on the Deployer, and will use a local scope. The apps in the App Source folderssearchApps
andmachineLearningApps
will be deployed from the Deployer to the search heads, and will use a cluster scope.
- The scope determines where the apps and add-ons are placed into the Splunk Enterprise instance.
Example using S3: SearchHeadCluster.yaml
apiVersion: enterprise.splunk.com/v4
kind: SearchHeadCluster
metadata:
name: shc
finalizers:
- enterprise.splunk.com/delete-pvc
spec:
replicas: 1
appRepo:
appsRepoPollIntervalSeconds: 900
defaults:
volumeName: volume_app_repo_us
scope: cluster
appSources:
- name: searchApps
location: searchAppsLoc/
- name: machineLearningApps
location: machineLearningAppsLoc/
- name: adminApps
location: adminAppsLoc/
scope: local
volumes:
- name: volume_app_repo_us
storageType: s3
provider: aws
path: bucket-app-framework/shcLoc-us/
endpoint: https://s3-us-west-2.amazonaws.com
region: us-west-2
secretRef: s3-secret
Example using Azure blob: SearchHeadCluster.yaml
apiVersion: enterprise.splunk.com/v4
kind: SearchHeadCluster
metadata:
name: shc
finalizers:
- enterprise.splunk.com/delete-pvc
spec:
replicas: 1
appRepo:
appsRepoPollIntervalSeconds: 900
defaults:
volumeName: volume_app_repo_us
scope: cluster
appSources:
- name: searchApps
location: searchAppsLoc/
- name: machineLearningApps
location: machineLearningAppsLoc/
- name: adminApps
location: adminAppsLoc/
scope: local
volumes:
- name: volume_app_repo_us
storageType: blob
provider: azure
path: bucket-app-framework/shcLoc-us/
endpoint: https://mystorageaccount.blob.core.windows.net
secretRef: azureblob-secret
- Apply the Custom Resource specification:
kubectl apply -f SearchHeadCluster.yaml
The App Framework detects the Splunk app or add-on archive files available in the App Source locations, and deploys the apps from the adminApps
folder to the Deployer instance for local use.
The apps in the searchApps
and machineLearningApps
folders are deployed to the Deployer for use on the clustered search heads. The Deployer is responsible for deploying those apps to the search heads.
Note: The Splunk search head restarts are triggered by the contents of the Splunk apps deployed, and are not initiated by the App Framework.
The App Framework maintains a checksum for each app or add-on archive file in the App Source location. The app name and checksum is recorded in the CR, and used to compare the deployed apps to the app archive files in the App Source location. The App Framework will scan for changes to the App Source folders using the polling interval, and deploy any updated apps to the instance. For the App Framework to detect that an app or add-on had changed, the updated app must use the same archive file name as the previously deployed one.
By default, the App Framework polls the remote object storage location for new or changed apps at the appsRepoPollIntervalSeconds
interval. To disable the interval check, and manage app updates manually, see the Manual initiation of app management.
For more information, see the Description of App Framework Specification fields.
The App Framework configuration is supported on the following Custom Resources: Standalone, ClusterManager, SearchHeadCluster, MonitoringConsole and LicenseManager. Configuring the App framework requires:
- Remote Source of Apps: Define the remote storage location, including unique folders, and the path to each folder.
- Destination of Apps: Define which Custom Resources need to be configured.
- Scope of Apps: Define if the apps need to be installed and run locally (such as Standalone, Monitoring Console and License Manager,) or cluster-wide (such as Indexer Cluster, and Search Head Cluster.)
Here is a typical App framework configuration in a Custom Resource definition:
appRepo:
description: Splunk Enterprise App repository. Specifies remote App
location and scope for Splunk App management
properties:
appSources:
description: List of App sources on remote storage
items:
description: AppSourceSpec defines list of App package (*.spl,
*.tgz) locations on remote volumes
properties:
location:
description: Location relative to the volume path
type: string
name:
description: Logical name for the set of apps placed in
this location. Logical name must be unique to the appRepo
type: string
scope:
description: 'Scope of the App deployment: cluster, local.
Scope determines whether the App(s) is/are installed locally
or cluster-wide'
type: string
volumeName:
description: Remote Storage Volume name
type: string
type: object
type: array
appsRepoPollIntervalSeconds:
description: Interval in seconds to check the Remote Storage for
App changes
type: integer
defaults:
description: Defines the default configuration settings for App
sources
properties:
scope:
description: 'Scope of the App deployment: cluster, local.
Scope determines whether the App(s) is/are installed locally
or cluster-wide'
type: string
volumeName:
description: Remote Storage Volume name
type: string
type: object
volumes:
description: List of remote storage volumes
items:
description: VolumeSpec defines remote volume config
properties:
endpoint:
description: Remote volume URI
type: string
name:
description: Remote volume name
type: string
path:
description: Remote volume path
type: string
provider:
description: App Package Remote Store provider. Currently supported proiders are aws, minio and azure
type: string
region:
description: Region of the remote storage volume where apps
reside. Not required for azure.
type: string
secretRef:
description: Secret object name
type: string
storageType:
description: Remote Storage type. Possible values are s3 (works with aws and minio) or blob (works with azure)
type: string
type: object
type: array
type: object
appRepo
is the start of the App Framework specification, and contains all the configurations required for App Framework to be successfully configured.
volumes
defines the remote storage configurations. The App Framework expects any apps to be installed in various Splunk deployments to be hosted in one or more remote storage volumes.
name
uniquely identifies the remote storage volume name within a CR. This is used by the Operator to identify the local volume.storageType
describes the type of remote storage. Currently,s3
,blob
are the supported storage type.provider
describes the remote storage provider. Currently,aws
,minio
andazure
are the supported providers. Uses3
withaws
orminio
and useblob
withazure
.endpoint
describes the URI/URL of the remote storage endpoint that hosts the apps.secretRef
refers to the K8s secret object containing the static remote storage access key. This parameter is not required if using IAM role based credentials.path
describes the path (including the folder) of one or more app sources on the remote store.
appSources
defines the name and scope of the appSource, the remote storage volume, and its location.
-
name
uniquely identifies the App source configuration within a CR. This used locally by the Operator to identify the App source. -
scope
defines the scope of the app to be installed.-
If the scope is
local
, the apps will be installed and run locally on the pod referred to by the CR. -
If the scope is
cluster
, the apps will be placed onto the configuration management node (Deployer, Cluster Manager) for deployment across the cluster referred to by the CR. -
The cluster scope is only supported on CRs that manage cluster-wide app deployment.
CRD Type Scope support App Framework support ClusterManager cluster, local Yes SearchHeadCluster cluster, local Yes Standalone local Yes LicenceManager local Yes MonitoringConsole local Yes IndexerCluster N/A No
-
-
volume
refers to the remote storage volume name configured under thevolumes
stanza (see previous section.) -
location
helps configure the specific appSource present under thepath
within thevolume
, containing the apps to be installed.
If app framework is enabled, the Splunk Operator creates a namespace scoped configMap named splunk-<namespace>-manual-app-update, which is used to manually trigger the app updates. The App Framework uses the polling interval appsRepoPollIntervalSeconds
to check for additional apps, or modified apps on the remote object storage.
When appsRepoPollIntervalSeconds
is set to 0
for a CR, the App Framework will not perform a check until the configMap status
field is updated manually. See Manual initiation of app management.
Note:- If the persistent storage volume is not configured for the Operator, by default, the App Framework uses the main memory(RAM) as the staging area for app package downloads. In order to avoid pressure on the main memory, it is strongly advised to use a persistent volume for the operator pod.
- Create the persistent volume used by the Operator pod to cache apps and add-ons:
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: operator-volume-claim
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 8Gi
storageClassName: gp2
- Associate the persistent volume with the Operator pod by updating the Operator configuration:
volumes:
- name: app-staging
persistentVolumeClaim:
claimName: operator-volume-claim
- Mount the volume on the path:
volumeMounts:
- mountPath: /opt/splunk/appframework/
name: app-staging
A full example of the Operator configuration:
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: operator-volume-claim
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 8Gi
storageClassName: gp2
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: splunk-operator
spec:
replicas: 1
selector:
matchLabels:
name: splunk-operator
template:
metadata:
labels:
name: splunk-operator
spec:
securityContext:
fsGroup: 1001
serviceAccountName: splunk-operator
containers:
- name: splunk-operator
image: "docker.io/splunk/splunk-operator:2.2.0"
volumeMounts:
- mountPath: /opt/splunk/appframework/
name: app-staging
imagePullPolicy: IfNotPresent
env:
- name: WATCH_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: "splunk-operator"
- name: RELATED_IMAGE_SPLUNK_ENTERPRISE
value: "docker.io/splunk/splunk:9.0.3-a2"
volumes:
- name: app-staging
persistentVolumeClaim:
claimName: operator-volume-claim
You can prevent the App Framework from automatically polling the remote storage for app changes. By configuring the appsRepoPollIntervalSeconds
setting to 0
, the App Framework polling is disabled, and the configMap is updated with a new status
field. The App Framework will perform an initial poll of the remote storage, even when the CR is initialized with polling disabled.
When you're ready to initiate an app check using the App Framework, manually update the status
field in the configMap for that CR type to on
. The 'status' field defaults to 'off'.
For example, you deployed one Standalone CR with app framework enabled.
kubectl get standalone
NAME PHASE DESIRED READY AGE
s1 Ready 1 1 13h
As mentioned above, Splunk Operator will create the configMap (assuming default
namespace) splunk-default-manual-app-update
with an entry for Standalone CR as below:
apiVersion: v1
data:
Standalone: |-
status: off
refCount: 1
kind: ConfigMap
metadata:
creationTimestamp: "2021-08-24T01:04:01Z"
name: splunk-manual-app-update
namespace: default
ownerReferences:
- apiVersion: enterprise.splunk.com/v3
controller: false
kind: Standalone
name: s1
uid: ddb9528f-2e25-49be-acd4-4fadde489849
resourceVersion: "75406013"
selfLink: /api/v1/namespaces/default/configmaps/splunk-manual-app-update
uid: 413c6053-af4f-4cb3-97e0-6dbe7cd17721
To trigger manual checking of apps, update the configMap, and set the status
field to on
for the Standalone CR as below:
kubectl patch cm/splunk-default-manual-app-update --type merge -p '{"data":{"Standalone":"status: on\nrefCount: 1"}}'
The App Framework will perform its checks, update or install apps, and reset the status
to off
when it has completed its tasks.
To reinstate automatic polling, update the CR appsRepoPollIntervalSeconds
setting to a value greater than 0.
NOTE: All CRs of the same type must have polling enabled, or disabled. For example, if appsRepoPollIntervalSeconds
is set to '0' for one Standalone CR, all other Standalone CRs must also have polling disabled. Use the kubectl
command to identify all CRs of the same type before updating the polling interval. You can experience unexpected polling behavior if there are CRs configured with a mix of polling enabled and disabled.
The App Framework does not preview, analyze, verify versions, or enable Splunk Apps and Add-ons. The administrator is responsible for previewing the app or add-on contents, verifying the app is enabled, and that the app is supported with the version of Splunk Enterprise deployed in the containers. For Splunk app packaging specifications see Package apps for Splunk Cloud or Splunk Enterprise in the Splunk Enterprise Developer documentation. The app archive files must end with .spl or .tgz; all other files are ignored.
-
The App Framework has no support to remove an app or add-on once it’s been deployed. To disable an app, update the archive contents located in the App Source, and set the app.conf state to disabled.
-
The App Framework defines one worker per CR type. For example, if you have multiple clusters receiveing app updates, a delay while managing one cluster will delay the app updates to the other cluster.
Azure Managed identities can be used to provide IAM access to the blobs. With managed identities, the AKS nodes, that host the pods, can retrieve a OAuth token that provides authorization for the Splunk operator pod to read the app packages stored in the Azure Storage account. The key point here is that the AKS node is associated with a Managed Identity and this managed identity is given a role
for read access called Storage Blob Data Reader
to the azure storage account.
Here are the steps showing an example of assiging managed identity:
Assumptions:
Familiarize yourself with AKS managed identity concepts
The names used below, such as resource-group name and AKS cluster name, are for examples purpose, please change them to the values as per your setup.
These steps cover creating resource group and AKS cluster also but you can skip them if you already have them created.
- Create an Azure resource group
az group create --name splunkOperatorResourceGroup --location westus2
- Create AKS Cluster
az aks create -g splunkOperatorResourceGroup -n splunkOperatorCluster --enable-managed-identity
- Get credentials to access cluster
az aks get-credentials --resource-group splunkOperatorResourceGroup --name splunkOperatorCluster
- Get the Kubelet user managed identity
Run
$ az identity list
Find the section that has -agentpool under name
That is look for the block that contains "name": "splunkOperatorCluster-agentpool"
{
"clientId": "a5890776-24e6-4f5b-9b6c-**************",
"id": "/subscriptions/f428689e-c379-4712--**************",/resourcegroups/MC_splunkOperatorResourceGroup_splunkOperatorCluster_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/splunkOperatorCluster-agentpool",
"location": "westus2",
"name": "splunkOperatorCluster-agentpool",
"principalId": "f0f04120-6a36-49bc--**************",",
"resourceGroup": "MC_splunkOperatorResourceGroup_splunkOperatorCluster_westus2",
"tags": {},
"tenantId": "8add7810-b62a--**************",",
"type": "Microsoft.ManagedIdentity/userAssignedIdentities"
}
Extract the principalId value from the outout above. Or you can use the following command to get the principalId
$ az identity show --name <identityName> --resource-group "<resourceGroup>" --query 'principalId' --output tsv
Example:
$ principalId=$(az identity show --name splunkOperatorCluster-agentpool --resource-group "MC_splunkOperatorResourceGroup_splunkOperatorCluster_westus2" --query 'principalId' --output tsv)
$ echo $principalId
f0f04120-6a36-49bc--**************
- Assign read access for Kubelet user managed identity to the storage account
Use the principalId
from the above section and assign it to the storage account
az role assignment create --assignee "<principalId>" --role 'Storage Blob Data Reader' --scope /subscriptions/<subscription_id>/resourceGroups/<storageAccountResourceGroup>/providers/Microsoft.Storage/storageAccounts/<storageAccountName>
For my example, if is splunkOperatorResourceGroup
and is mystorageaccount then the command would be:
$ az role assignment create --assignee "f0f04120-6a36-49bc--**************" --role 'Storage Blob Data Reader' --scope /subscriptions/f428689e-c379-4712--**************/resourceGroups/splunkOperatorResourceGroup/providers/Microsoft.Storage/storageAccounts/mystorageaccount
After this command, you can use App framework for Azure blob without secrets.
Azure Blob Authorization Recommendations:
Azure allows "Managed Identities" assignment at the "storage accounts" level as well as at specific buckets levels. A managed identity that is assigned read permissions at a storage account level will have read access for all the buckets within that storage account. As a good security practice, you should assign the managed identity to only the specific buckets and not to the whole storage account.
In contrast to "Managed Identities", Azure allows the "shared access keys" configurable only at the storage accounts level. When using the "secretRef" configuration in the CRD, the underlying secret key will allow both read and write access to the storage account (and all the buckets within it). So, based on your security needs, you may want to consider using "Managed Identities" instead of secrets. Also note that there isn't an automated way of rotating the secret key, so in case you are using these keys, please rotate them at regular intervals of times such as 90 days interval.