diff --git a/docs/ChangeLog.md b/docs/ChangeLog.md index 597709d40..61f4a6d7c 100644 --- a/docs/ChangeLog.md +++ b/docs/ChangeLog.md @@ -3,7 +3,7 @@ ## 1.0.2 (2021-08-20) * This is the 1.0.2 release. The Splunk Operator for Kubernetes is a supported platform for deploying Splunk Enterprise with the prerequisites and constraints laid out [here](https://github.com/splunk/splunk-operator/blob/develop/docs/README.md#prerequisites-for-the-splunk-operator) -* This release depends upon changes made concurrently in the Splunk Enterprise container images. You should use the splunk/splunk:8.2.1-a1 image with it +* This release depends upon changes made concurrently in the Splunk Enterprise container images. You should use the splunk/splunk:8.2.1-a2 image with it * CSPL-725 - Operator App Management Framework Phase 2 (Beta Release) @@ -13,6 +13,9 @@ * Updated documentation for App Framework * Updated documentation for Smartstore examples +* Known Issues + * CSPL-1250 - [AppFramework] On App install/update to the Search Head Cluster(SHC), the deployer unnecessarily includes the apps which were installed in the previous bundle push along with the new/updated app. This can potentially delay the app install/update process + ## 1.0.1 (2021-06-09) * This is the 1.0.1 release. The Splunk Operator for Kubernetes is a supported platform for deploying Splunk Enterprise with the prerequisites and constraints laid out [here](https://github.com/splunk/splunk-operator/blob/develop/docs/README.md#prerequisites-for-the-splunk-operator) diff --git a/docs/Images.md b/docs/Images.md index 45bce134e..be1b36afc 100644 --- a/docs/Images.md +++ b/docs/Images.md @@ -3,7 +3,7 @@ The Splunk Operator requires these docker images to be present or available to your Kubernetes cluster: * `splunk/splunk-operator`: The Splunk Operator image built by this repository or the [official release](https://hub.docker.com/r/splunk/splunk-operator) (1.0.2 or later) -* `splunk/splunk:`: The [Splunk Enterprise image](https://github.com/splunk/docker-splunk) (8.2.1-a1 or later) +* `splunk/splunk:`: The [Splunk Enterprise image](https://github.com/splunk/docker-splunk) (8.2.1-a2 or later) All of these images are publicly available, and published on [Docker Hub](https://hub.docker.com/). diff --git a/docs/Install.md b/docs/Install.md index 1703690f0..801958f4f 100644 --- a/docs/Install.md +++ b/docs/Install.md @@ -7,7 +7,7 @@ If you want to customize the installation of the Splunk Operator, download a copy of the installation YAML locally, and open it in your favorite editor. ``` -wget -O splunk-operator.yaml https://github.com/splunk/splunk-operator/releases/download/1.0.1/splunk-operator-install.yaml +wget -O splunk-operator.yaml https://github.com/splunk/splunk-operator/releases/download/1.0.2/splunk-operator-install.yaml ``` @@ -18,13 +18,13 @@ Kubernetes only allows administrators to install new `CustomResourceDefinition` If you are not an administrator, you can have an administrator create the required objects for you by running: ``` -kubectl apply -f https://github.com/splunk/splunk-operator/releases/download/1.0.1/splunk-operator-crds.yaml +kubectl apply -f https://github.com/splunk/splunk-operator/releases/download/1.0.2/splunk-operator-crds.yaml ``` Afterwards, you can download and use the yaml file to install the operator within your own namespace: ``` -wget -O splunk-operator.yaml https://github.com/splunk/splunk-operator/releases/download/1.0.1/splunk-operator-noadmin.yaml +wget -O splunk-operator.yaml https://github.com/splunk/splunk-operator/releases/download/1.0.2/splunk-operator-noadmin.yaml kubectl config set-context --current --namespace= kubectl apply -f splunk-operator.yaml ``` @@ -35,7 +35,7 @@ kubectl apply -f splunk-operator.yaml If you want to configure a single instance of the operator to watch all the namespaces of your cluster while managing deployments only in the namespace `splunk-operator`, use the alternative cluster scope installation yaml file: ``` -wget -O splunk-operator.yaml https://github.com/splunk/splunk-operator/releases/download/1.0.1/splunk-operator-cluster.yaml +wget -O splunk-operator.yaml https://github.com/splunk/splunk-operator/releases/download/1.0.2/splunk-operator-cluster.yaml ``` **Note**: The operator has the ability to watch, list secret objects in all namespaces. diff --git a/docs/README.md b/docs/README.md index 4077516ea..704d49757 100644 --- a/docs/README.md +++ b/docs/README.md @@ -109,7 +109,7 @@ For production environments, we are requiring the use of Splunk SmartStore. As a A Kubernetes cluster administrator can install and start the Splunk Operator by running: ``` -kubectl apply -f https://github.com/splunk/splunk-operator/releases/download/1.0.1/splunk-operator-install.yaml +kubectl apply -f https://github.com/splunk/splunk-operator/releases/download/1.0.2/splunk-operator-install.yaml ``` The [Advanced Installation Instructions](Install.md) page offers guidance for advanced configurations, including the use of private image registries, installation at cluster scope, and installing the Splunk Operator as a user who is not a Kubernetes administrator. Users of Red Hat OpenShift should review the [Red Hat OpenShift](OpenShift.md) page. diff --git a/docs/SplunkOperatorUpgrade.md b/docs/SplunkOperatorUpgrade.md index ee99f0489..89a9ee440 100644 --- a/docs/SplunkOperatorUpgrade.md +++ b/docs/SplunkOperatorUpgrade.md @@ -21,7 +21,7 @@ A Splunk Operator for Kubernetes upgrade might include support for a later versi 1. Download the latest Splunk Operator installation yaml file. ​ ``` -wget -O splunk-operator.yaml https://github.com/splunk/splunk-operator/releases/download/1.0.1/splunk-operator-install.yaml +wget -O splunk-operator.yaml https://github.com/splunk/splunk-operator/releases/download/1.0.2/splunk-operator-install.yaml ``` ​ 2. (Optional) Review the file and update it with your specific customizations used during your install.