Merge branch 'v8.0' 15/9915/2
authorbeierlm <mark.beierl@canonical.com>
Fri, 23 Oct 2020 18:54:56 +0000 (14:54 -0400)
committerbeierlm <mark.beierl@canonical.com>
Fri, 23 Oct 2020 19:01:05 +0000 (15:01 -0400)
Change-Id: I96d3bae3abca7b2a5f66bca591b4358d6c921f3d
Signed-off-by: beierlm <mark.beierl@canonical.com>
1  2 
installers/charm/lcm-k8s/reactive/lcm.py
installers/charm/ng-ui/src/charm.py
installers/charm/pla/src/charm.py
installers/charmed_install.sh

  #     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  #     See the License for the specific language governing permissions and
  #     limitations under the License.
--from charms.layer.caas_base import pod_spec_set
--from charms.reactive import endpoint_from_flag
--from charms.reactive import when, when_not, hook
--from charms.reactive.flags import set_flag, clear_flag
++import logging
++import yaml
++
  from charmhelpers.core.hookenv import (
      log,
      metadata,
      config,
  )
  from charms import layer
--import yaml
- import logging
++from charms.layer.caas_base import pod_spec_set
++from charms.reactive import endpoint_from_flag
++from charms.reactive import when, when_not, hook
++from charms.reactive.flags import set_flag, clear_flag
++
 +
 +logger = logging.getLogger(__name__)
 +
  
  @hook("upgrade-charm")
  @when("leadership.is_leader")
  #   See the License for the specific language governing permissions and
  #   limitations under the License.
  
--import sys
--import logging
  import base64
--
--sys.path.append("lib")
++from glob import glob
++import logging
++from pathlib import Path
++from string import Template
++import sys
  
  from ops.charm import CharmBase
  from ops.framework import StoredState, Object
@@@ -30,9 -30,9 +31,9 @@@ from ops.model import 
      WaitingStatus,
  )
  
--from glob import glob
--from pathlib import Path
--from string import Template
++
++sys.path.append("lib")
++
  
  logger = logging.getLogger(__name__)
  
@@@ -157,7 -157,7 +158,9 @@@ class NGUICharm(CharmBase)
                      },
                  }
              )
 +
+         logger.debug(files)
++
          spec = {
              "version": 2,
              "containers": [
  #   See the License for the specific language governing permissions and
  #   limitations under the License.
  
--import sys
++from glob import glob
  import logging
--
--sys.path.append("lib")
++from pathlib import Path
++from string import Template
++import sys
  
  from ops.charm import CharmBase
  from ops.framework import StoredState, Object
@@@ -27,9 -27,9 +28,9 @@@ from ops.model import 
      WaitingStatus,
  )
  
--from glob import glob
--from pathlib import Path
--from string import Template
++
++sys.path.append("lib")
++
  
  logger = logging.getLogger(__name__)
  
Simple merge